Skip to content

Commit ef32183

Browse files
committed
Let CI archive html test reports
when having to debug CI test failures its much more convenient to be able to download the html report compared to the XML reports (as the latter requires to you find the right file/failure manually).
1 parent 067bb9d commit ef32183

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/gradle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
name: upload-unit-test-artifacts
7474
path: |
75-
**/build/test-results/**
75+
**/build/reports/tests/**
7676
7777
quarkus-tests:
7878
name: Quarkus Tests
@@ -109,7 +109,7 @@ jobs:
109109
with:
110110
name: upload-quarkus-test-artifacts
111111
path: |
112-
**/build/test-results/**
112+
**/build/reports/tests/**
113113
114114
integration-tests:
115115
name: Integration Tests
@@ -142,7 +142,7 @@ jobs:
142142
with:
143143
name: upload-integration-test-artifacts
144144
path: |
145-
**/build/test-results/**
145+
**/build/reports/tests/**
146146
147147
store-gradle-cache:
148148
name: Store Gradle Cache

0 commit comments

Comments
 (0)