We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 740ee14 commit 782a42cCopy full SHA for 782a42c
1 file changed
‎project_name/.github/workflows/ci.yml.jinja‎
@@ -161,12 +161,17 @@ jobs:
161
run: uv pip list
162
- name: Run tests
163
if: ${{ success() && steps.install_packages.outcome == 'success' }}
164
- run: uv run --no-sync pytest --cov-branch --cov-report=xml
+ run: uv run --no-sync pytest --cov-branch --cov-report=xml --junitxml=junit.xml
165
- name: Upload coverage reports to Codecov
166
167
uses: codecov/codecov-action@v5
168
with:
169
token: ${{ secrets.CODECOV_TOKEN }}
170
+ - name: Upload test results to Codecov
171
+ if: ${{ !cancelled() }}
172
+ uses: codecov/test-results-action@v1
173
+ with:
174
+ token: ${{ secrets.CODECOV_TOKEN }}
175
{%- endraw %}
176
177
pylint:
0 commit comments