We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fe2273 commit d7c45d6Copy full SHA for d7c45d6
1 file changed
.github/workflows/testing.yaml
@@ -25,7 +25,17 @@ jobs:
25
- name: Run tests
26
run: pytest --cov --cov-branch --cov-report=xml
27
28
+ - name: Upload coverage to Codecov (bash uploader fallback)
29
+ if: matrix.python == '2.7' || matrix.python == '3.5'
30
+ run: |
31
+ curl -s https://codecov.io/bash | bash -s -- \
32
+ -t ${{ secrets.CODECOV_TOKEN }} \
33
+ -f coverage.xml \
34
+ -F python${{ matrix.python }} \
35
+ -Z
36
+
37
- name: Upload coverage to Codecov
38
+ if: matrix.python != '2.7' && matrix.python != '3.5'
39
uses: codecov/codecov-action@v5
40
with:
41
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments