Jacoco on Gradle - How to verify coverage with exclusions - WRONG
jacocoTestCoverageVerification { | |
violationRules { | |
rule { | |
excludes = [ | |
'com/example/my/package/*', | |
'com/example/service/MyApplication.kt', | |
'com/google/protobuf/*' | |
] | |
limit { | |
minimum = 0.79 | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment