fix(datahub-client): avoid parallel execution of metadat-io:test (#4685)

This commit is contained in:
MugdhaHardikar-GSLab 2022-04-19 04:21:26 +05:30 committed by GitHub
parent 0a13ee4744
commit 9ecb785698
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,6 +78,8 @@ if (project.hasProperty("releaseVersion")) {
}
test {
// to avoid simultaneous executions of tests when complete build is run
mustRunAfter(":metadata-io:test")
useJUnit()
finalizedBy jacocoTestReport
}