mirror of https://github.com/grpc/grpc-java.git
all: JacocoMerge must run after grpc-interop-testing's tests (#8093)
Otherwise the executionData would be out-of-date.
This commit is contained in:
parent
9614738a7d
commit
31cfb6d32e
|
|
@ -50,7 +50,9 @@ javadoc {
|
||||||
|
|
||||||
task jacocoMerge(type: JacocoMerge) {
|
task jacocoMerge(type: JacocoMerge) {
|
||||||
dependsOn(subprojects.jacocoTestReport.dependsOn)
|
dependsOn(subprojects.jacocoTestReport.dependsOn)
|
||||||
|
dependsOn(project(':grpc-interop-testing').jacocoTestReport.dependsOn)
|
||||||
mustRunAfter(subprojects.jacocoTestReport.mustRunAfter)
|
mustRunAfter(subprojects.jacocoTestReport.mustRunAfter)
|
||||||
|
mustRunAfter(project(':grpc-interop-testing').jacocoTestReport.mustRunAfter)
|
||||||
destinationFile = file("${buildDir}/jacoco/test.exec")
|
destinationFile = file("${buildDir}/jacoco/test.exec")
|
||||||
executionData = files(subprojects.jacocoTestReport.executionData)
|
executionData = files(subprojects.jacocoTestReport.executionData)
|
||||||
.plus(project(':grpc-interop-testing').jacocoTestReport.executionData)
|
.plus(project(':grpc-interop-testing').jacocoTestReport.executionData)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue