Commit 1f2b60d
authored
fix(gradle-build-pr): deduplicate junit_files glob to avoid double-counted results (#7)
The previous junit_files config listed two overlapping globs:
- artifacts/**/TEST-*.xml
- artifacts/**/test-results/**/*.xml
Both match the same Gradle JUnit reports (TEST-*.xml under test-results),
so EnricoMi/publish-unit-test-result-action would parse each file twice
and inflate the totals reported on PR comments and the check summary.
Consolidate to the single canonical pattern
artifacts/**/test-results/**/TEST-*.xml.1 parent 168ca0a commit 1f2b60d
1 file changed
Lines changed: 1 addition & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
172 | 172 | | |
173 | 173 | | |
174 | 174 | | |
175 | | - | |
176 | | - | |
177 | | - | |
| 175 | + | |
178 | 176 | | |
179 | 177 | | |
180 | 178 | | |
| |||
0 commit comments