Skip to content

Commit 615c0c6

Browse files
committed
[Java] Enable aggregated test report
1 parent 969d742 commit 615c0c6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@ subprojects {
189189
showStandardStreams = true
190190
exceptionFormat = 'full'
191191
}
192+
193+
reports.html.enabled = false // Disable individual test reports
192194
}
193195

194196
javadoc {
@@ -766,6 +768,12 @@ task uploadToMavenCentral {
766768
'sbe-all:uploadShadow'
767769
}
768770

771+
task testReport(type: TestReport) {
772+
destinationDir = file("$buildDir/reports/allTests")
773+
// Include the results from the `test` task in all subprojects
774+
reportOn subprojects*.test
775+
}
776+
769777
wrapper {
770778
gradleVersion = '6.0.1'
771779
distributionType = 'ALL'

0 commit comments

Comments
 (0)