We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11d62dc commit 894aac7Copy full SHA for 894aac7
1 file changed
.github/workflows/tests.yaml
@@ -24,8 +24,15 @@ jobs:
24
echo "$PWD/.venv/bin" >> $GITHUB_PATH
25
uv sync --dev
26
- name: Run tests with pytest and collect coverage
27
- run: pytest --cov=pdfbaker --cov-report=xml
+ run:
28
+ pytest --cov=pdfbaker --cov-report=xml --junitxml=junit.xml -o
29
+ junit_family=legacy
30
- name: Upload coverage to Codecov
31
uses: codecov/codecov-action@v5
32
with:
33
token: ${{ secrets.CODECOV_TOKEN }}
34
+ - name: Upload test results to Codecov
35
+ if: ${{ !cancelled() }}
36
+ uses: codecov/test-results-action@v1
37
+ with:
38
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments