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 8d870cc commit e07f1e4Copy full SHA for e07f1e4
.coverage
68 KB
.github/workflows/python.yaml
@@ -53,9 +53,15 @@ jobs:
53
python -m pip install --editable scratch/projects/one_two_three
54
55
- name: "Run tests"
56
- run: python -m coverage run -m pytest
+ run: python -m coverage run -m pytest --junitxml=junit.xml -o junit_family=legacy
57
58
- name: "Upload coverage reports to Codecov"
59
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5.0.7
60
env:
61
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
62
+
63
+ - name: Upload test results to Codecov
64
+ if: ${{ !cancelled() }}
65
+ uses: codecov/test-results-action@9739113ad922ea0a9abb4b2c0f8bf6a4aa8ef820 # v1.0.1
66
+ with:
67
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments