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 f8c33d9 commit a82ed20Copy full SHA for a82ed20
.github/workflows/tests.yml
@@ -82,6 +82,7 @@ jobs:
82
make pytest
83
84
- name: Upload coverage to Codecov
85
+ if: runner.os == 'Linux'
86
uses: codecov/codecov-action@v3
87
with:
88
token: ${{ secrets.CODECOV_TOKEN }}
@@ -128,3 +129,13 @@ jobs:
128
129
- name: Test with pytest
130
run: |
131
132
+
133
+ - name: Upload coverage to Codecov
134
135
+ uses: codecov/codecov-action@v3
136
+ with:
137
+ token: ${{ secrets.CODECOV_TOKEN }}
138
+ file: ./tests/coverage.xml
139
+ flags: unittests
140
+ name: codecov-umbrella-pure-python
141
+ fail_ci_if_error: false
0 commit comments