Skip to content

Commit

Permalink
Fix test reporter action
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebemish committed Jul 16, 2024
1 parent 9042f8c commit 854748f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
{
"with": {
"name": "Test Results - Misc",
"path": "**/test-results/test/**/TEST-*.xml\njunit-test-results-native-*/**/TEST-*.xml",
"path": "**/test-results/test/**/TEST-*.xml,junit-test-results-native-*/**/TEST-*.xml",
"reporter": "java-junit",
"fail-on-empty": "true",
"list-tests": "failed"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ managedVersioning {
name.set 'JUnit Test Report - Misc'
uses.set 'dorny/test-reporter@v1'
with.put 'name', 'Test Results - Misc'
with.put 'path', '**/test-results/test/**/TEST-*.xml\njunit-test-results-native-*/**/TEST-*.xml'
with.put 'path', '**/test-results/test/**/TEST-*.xml,junit-test-results-native-*/**/TEST-*.xml'
with.put 'reporter', 'java-junit'
with.put 'fail-on-empty', 'true'
with.put 'list-tests', 'failed'
Expand Down

0 comments on commit 854748f

Please sign in to comment.