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 9495253 commit f305204Copy full SHA for f305204
‎project_name/.github/workflows/ci.yml.jinja‎
@@ -139,9 +139,10 @@ jobs:
139
- name: List packages
140
run: uv pip list
141
- name: Run tests
142
+ id: run_tests
143
run: uv run --no-sync pytest --cov-branch --cov-report=xml --junitxml=junit.xml
144
- name: Upload test results to Codecov
- if: ${{ !cancelled() }}
145
+ if: ${{ !cancelled() && steps.run_tests.conclusion != 'skipped' }}
146
uses: codecov/test-results-action@v1
147
with:
148
token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments