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 6a66070 commit 29fd3f6Copy full SHA for 29fd3f6
.github/workflows/test.yml
@@ -61,6 +61,12 @@ jobs:
61
mkdir reports/ || echo "Directory exists"
62
uv run coverage run -m pytest --junitxml=reports/junit/python${{ matrix.python-version }}.xml
63
64
+ - name: Show test results
65
+ uses: mikepenz/action-junit-report@v5
66
+ if: success() || failure() # always run even if the previous step fails
67
+ with:
68
+ report_paths: reports/junit/*.xml
69
+
70
- name: Upload coverage results
71
uses: actions/upload-artifact@v6
72
with:
0 commit comments