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 e51bb93 commit 0f1cde1Copy full SHA for 0f1cde1
.github/workflows/continuous-integration.yml
@@ -53,11 +53,16 @@ jobs:
53
- name: Test with pytest
54
run: |
55
pytest tests/
56
- pytest --cov --cov-report=xml
+ pytest --cov --cov-report=xml --junitxml=junit.xml
57
- name: Upload results to Codecov
58
uses: codecov/codecov-action@v5
59
with:
60
token: ${{ secrets.CODECOV_TOKEN }}
61
+ - name: Upload test results to Codecov
62
+ if: ${{ !cancelled() }}
63
+ uses: codecov/test-results-action@v1
64
+ with:
65
+ token: ${{ secrets.CODECOV_TOKEN }}
66
67
build-windows:
68
runs-on: windows-latest
0 commit comments