Skip to content

Commit 6b47b44

Browse files
committed
Add unfortunate workaround for deps installation in Python 3.7 in CI
1 parent 8f089bf commit 6b47b44

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Python CI
22
on: [push, workflow_dispatch]
33

44
jobs:
5-
build:
5+
run-test-suite:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
fail-fast: false
@@ -30,6 +30,7 @@ jobs:
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232
- name: Install dependencies
33-
run: python -m pip install . --group test
33+
# Will become `python -m pip install . --group test` when we drop Python 3.7
34+
run: python -m pip install pytest
3435
- name: Test Execution
3536
run: python -m pytest ./tests

0 commit comments

Comments
 (0)