We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ead88f commit 156b13dCopy full SHA for 156b13d
.github/workflows/system-tests.yml
@@ -358,11 +358,12 @@ jobs:
358
path: 'ditto-testing/docker/*.log'
359
360
361
- - name: Publish Test Report
362
- if: success() || failure()
363
- uses: scacap/action-surefire-report@v1
+ - name: Publish Test Results
+ uses: dorny/test-reporter@v1
364
with:
365
- report_paths: 'ditto-testing/**/failsafe-reports/TEST-*.xml'
366
- create_check: 'false'
367
- fail_on_test_failures: 'true'
+ name: Test Results | ${{ env.DITTO_BRANCH }}
+ artifact: system-test-results-${{ env.DITTO_BRANCH }}-${{ github.run_number }}
+ path: ditto-testing/**/failsafe-reports/TEST-*IT.xml
+ reporter: java-junit
368
+ fail-on-error: true
369
0 commit comments