We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dec48e3 commit 73fd10cCopy full SHA for 73fd10c
2 files changed
.github/workflows/tests.yaml
@@ -64,7 +64,8 @@ jobs:
64
GITHUB_USER: ${{ github.actor }}
65
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
66
- name: Test
67
- run: make test PYTEST_FLAGS="-n8"
+ run: |
68
+ make test PYTEST_FLAGS="-n8"
69
env:
70
71
COVERALLS_PARALLEL: true
Makefile
@@ -3,7 +3,7 @@ export LC_ALL := en_US.UTF-8
3
PYTHON ?= python3
4
5
test:
6
- docker-compose run --rm tests make xvfb-cover-pytest
+ docker compose run --rm tests make xvfb-cover-pytest
7
8
pytest:
9
$(PYTHON) -m pytest -vv $(PYTEST_FLAGS) tests/
0 commit comments