We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45f5e8a commit f1c5fa7Copy full SHA for f1c5fa7
1 file changed
.github/workflows/pull-request-testing.yml
@@ -35,4 +35,10 @@ jobs:
35
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
36
- name: Test with pytest
37
run: |
38
- pytest --cov=src -v
+ pytest --cov=src --cov-report=xml
39
+ - name: Upload coverage reports to Codecov
40
+ uses: codecov/codecov-action@v3
41
+ env:
42
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
43
+ with:
44
+ files: ./coverage.xml # coverage report
0 commit comments