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 bd519ca commit 3369509Copy full SHA for 3369509
.github/workflows/onpush.yml
@@ -61,15 +61,18 @@ jobs:
61
- name: Run Unit Tests
62
run: python -m coverage run -m pytest tests/ -v
63
64
+ - name: Generate coverage XML
65
+ run: python -m coverage xml -o coverage.xml
66
+
67
- name: Publish test coverage
68
if: startsWith(matrix.os,'ubuntu')
69
uses: codecov/codecov-action@v3
70
with:
71
token: ${{ secrets.CODECOV_TOKEN }}
72
+ files: ./coverage.xml
73
env_vars: OS,PYTHON
74
fail_ci_if_error: true
75
flags: unittests
76
name: codecov-umbrella
- path_to_write_report: ./coverage/codecov_report.txt
77
verbose: true
78
0 commit comments