Skip to content

Commit 31cfb6d

Browse files
authored
all: JacocoMerge must run after grpc-interop-testing's tests (grpc#8093)
Otherwise the executionData would be out-of-date.
1 parent 9614738 commit 31cfb6d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

all/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ javadoc {
5050

5151
task jacocoMerge(type: JacocoMerge) {
5252
dependsOn(subprojects.jacocoTestReport.dependsOn)
53+
dependsOn(project(':grpc-interop-testing').jacocoTestReport.dependsOn)
5354
mustRunAfter(subprojects.jacocoTestReport.mustRunAfter)
55+
mustRunAfter(project(':grpc-interop-testing').jacocoTestReport.mustRunAfter)
5456
destinationFile = file("${buildDir}/jacoco/test.exec")
5557
executionData = files(subprojects.jacocoTestReport.executionData)
5658
.plus(project(':grpc-interop-testing').jacocoTestReport.executionData)

0 commit comments

Comments
 (0)