We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 770a8d8 commit eb2cf32Copy full SHA for eb2cf32
gradle/root/testing.gradle
@@ -124,6 +124,7 @@ gradle.projectsEvaluated {
124
//finalizedBy jacocoRootReport
125
}
126
127
+ /**
128
task rootTestReport(type: TestReport, group: 'Reports') {
129
description = 'Generates an aggregate test report'
130
destinationDir = file("$buildDir/reports/allTests")
@@ -142,6 +143,8 @@ gradle.projectsEvaluated {
142
143
// Wait until all Test tasks have run. This creates a task *ordering*, not a dependency.
144
mustRunAfter subprojectTestTasks
145
146
+ **/
147
148
149
+
150
apply plugin: 'base' // Gives us the "clean" task for removing rootTestReport's output.
0 commit comments