From 854748f8c499cdfbaaf590651fac72870d5111be Mon Sep 17 00:00:00 2001 From: Luke Bemish Date: Tue, 16 Jul 2024 09:54:02 -0500 Subject: [PATCH] Fix test reporter action --- .github/workflows/report.yml | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index 0fe0114..540fea5 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -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" diff --git a/build.gradle b/build.gradle index 7799734..988559a 100644 --- a/build.gradle +++ b/build.gradle @@ -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'