We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7922c3f commit 40651c1Copy full SHA for 40651c1
.github/workflows/ci.yml
@@ -11,11 +11,11 @@ jobs:
11
uses: actions/checkout@v4
12
13
- name: Run tests with pytest
14
- run: docker-compose run --rm tester
+ run: docker compose run --rm tester
15
16
- name: Stop containers
17
if: always()
18
- run: docker-compose stop
+ run: docker compose stop
19
20
lint:
21
runs-on: ubuntu-latest
.travis.yml
@@ -8,7 +8,7 @@ python:
8
cache:
9
pip: true
10
install:
- - docker-compose up
+ - docker compose up
- pip install -Ur tests/requirements.txt
script:
- cd tests && pytest
0 commit comments