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 de9baa1 commit 9bcbb12Copy full SHA for 9bcbb12
.github/workflows/testing.yml
@@ -125,7 +125,15 @@ jobs:
125
- name: Test with pytest
126
run: |
127
cd ${CLAW}/pyclaw
128
- coverage run --source=src -m pytest -vv --showlocals --ignore=development -k "not test_shallow_sphere"
+ coverage run --source=src -m pytest -vv --showlocals --ignore=development -k "not test_shallow_sphere" --junitxml=test-results.xml
129
+
130
+ - name: Process test results
131
+ uses: test-summary/[email protected]
132
+ if: always()
133
+ with:
134
+ paths: .test_report.xml
135
+ output: test-summary.md
136
+ show: all
137
138
- name: Upload to Coveralls
139
if: always()
0 commit comments