We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa0fb85 commit 9768723Copy full SHA for 9768723
.github/workflows/python-tests.yml
@@ -27,4 +27,8 @@ jobs:
27
pip install -r dev-requirements.txt
28
- name: Test with pytest
29
run: |
30
- pytest
+ pytest --cov --cov-report=term-missing | tee pytest-coverage.out
31
+ - name: Comment on PR with coverage report
32
+ uses: marp-team/pytest-cov-comment@v1
33
+ with:
34
+ pytest_coverage_file: pytest-coverage.out
unix/dev-requirements.txt
@@ -64,4 +64,5 @@ wheel==0.38.4
64
wrapt==1.14.1; python_version < '3.11'
65
zipp==3.11.0; python_version < '3.10'
66
pytest
67
+pytest-cov
68
pytest-mock
0 commit comments