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 8f089bf commit 6b47b44Copy full SHA for 6b47b44
.github/workflows/test.yml
@@ -2,7 +2,7 @@ name: Python CI
2
on: [push, workflow_dispatch]
3
4
jobs:
5
- build:
+ run-test-suite:
6
runs-on: ${{ matrix.os }}
7
strategy:
8
fail-fast: false
@@ -30,6 +30,7 @@ jobs:
30
with:
31
python-version: ${{ matrix.python-version }}
32
- name: Install dependencies
33
- run: python -m pip install . --group test
+ # Will become `python -m pip install . --group test` when we drop Python 3.7
34
+ run: python -m pip install pytest
35
- name: Test Execution
36
run: python -m pytest ./tests
0 commit comments