We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e498a68 commit eb2f0d1Copy full SHA for eb2f0d1
1 file changed
.github/workflows/check-build-deploy.yaml
@@ -165,7 +165,19 @@ jobs:
165
key: pytest|${{steps.store-hashed-python-version.outputs.hashed_python_version}}
166
167
- name: Run pytest
168
- run: uv run -- pytest # TODO: Add GitHub workflows output format
+ run: uv run pytest --cov --cov-branch --cov-report=xml --junitxml-junit.xml
169
+
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
176
+ - name: Upload coverage report to Codecov
177
+ uses: codecov/codecov-action@v5
178
179
180
181
182
ruff-lint:
183
runs-on: ubuntu-latest
0 commit comments