Skip to content

Commit 73fd10c

Browse files
committed
ci: Make sure docker compose is available
1 parent dec48e3 commit 73fd10c

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ jobs:
6464
GITHUB_USER: ${{ github.actor }}
6565
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6666
- name: Test
67-
run: make test PYTEST_FLAGS="-n8"
67+
run: |
68+
make test PYTEST_FLAGS="-n8"
6869
env:
6970
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7071
COVERALLS_PARALLEL: true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export LC_ALL := en_US.UTF-8
33
PYTHON ?= python3
44

55
test:
6-
docker-compose run --rm tests make xvfb-cover-pytest
6+
docker compose run --rm tests make xvfb-cover-pytest
77

88
pytest:
99
$(PYTHON) -m pytest -vv $(PYTEST_FLAGS) tests/

0 commit comments

Comments
 (0)