We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 08cf03a + 872de08 commit 27a83c4Copy full SHA for 27a83c4
2 files changed
.github/workflows/pytest.yml
@@ -30,7 +30,7 @@ jobs:
30
- name: Install dependencies
31
run: |
32
python -m pip install --upgrade pip
33
- pip install pytest
+ pip install -r requirements.txt
34
35
- name: Run tests
36
@@ -39,7 +39,6 @@ jobs:
39
- name: Run tests with coverage
40
if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest'
41
42
- pip install pytest-cov
43
pytest tests/ --cov=. --cov-report=xml --cov-report=term
44
45
- name: Upload coverage reports
requirements.txt
@@ -0,0 +1,3 @@
1
+# Only needed for testing
2
+pytest>=7.0.0
3
+pytest-cov>=4.0.0
0 commit comments