We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d309ec commit 52642a0Copy full SHA for 52642a0
1 file changed
.github/workflows/ci.yml
@@ -76,11 +76,12 @@ jobs:
76
pip install -r tests/requirements.txt
77
- name: Test with pytest
78
run: |
79
- pytest --cov
+ pytest --cov --junitxml=junit.xml
80
- name: Dogfooding codecov-cli
81
if: ${{ !github.event.pull_request.head.repo.fork && github.repository_owner == 'codecov' }}
82
83
codecovcli do-upload --fail-on-error -t ${{ secrets.CODECOV_TOKEN }} --plugin pycoverage --flag python${{matrix.python-version}}
84
+ codecovcli do-upload --report-type test_results --fail-on-error -t ${{ secrets.CODECOV_TOKEN }} --plugin pycoverage --flag python${{matrix.python-version}}
85
86
static-analysis:
87
runs-on: ubuntu-latest
0 commit comments