Update code coverage config to be more clear (#365)

This commit is contained in:
Trask Stalnaker 2020-04-29 16:53:21 -07:00 committed by GitHub
parent 212b80d877
commit 79865a8472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 7 deletions

View File

@ -1,11 +1,8 @@
apply from: "${rootDir}/gradle/java.gradle"
minimumBranchCoverage = 0.6
minimumInstructionCoverage = 0.8
excludedClassesCoverage += [
'io.opentelemetry.auto.tooling.*',
'io.opentelemetry.auto.typed.*'
]
// TODO this is not the desired state, only reflects current reality
minimumBranchCoverage = 0
minimumInstructionCoverage = 0
configurations {
// classpath used by the instrumentation muzzle plugin
@ -38,4 +35,3 @@ dependencies {
instrumentationMuzzle configurations.compile
}