Skip to content

Commit

Permalink
Change test reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Nov 22, 2023
1 parent 12a20e1 commit d6210a4
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,20 @@ jobs:
uses: dorny/test-reporter@v1
with:
artifact: junit-test-results
name: Test Results
path: '**/TEST-*.xml'
name: Test Results - Java 17
path: |
**/test-results/testOn17/**/TEST-*.xml
**/test-results/test/**/TEST-*.xml
reporter: java-junit
fail-on-empty: 'true'
fail-on-empty: 'true'
list-tests: 'failed'
- name: JUnit Test Report
uses: dorny/test-reporter@v1
with:
artifact: junit-test-results
name: Test Results - Java 21
path: |
**/test-results/testOn21/**/TEST-*.xml
reporter: java-junit
fail-on-empty: 'true'
list-tests: 'failed'

0 comments on commit d6210a4

Please sign in to comment.