arturdm/jacoco-android-gradle-plugin

How to add limit rule on minimum coverage.

Opened this issue · 0 comments

I would really like to do something like this... Is it this possible?

//	val jacocoAndroidUnitTestReport by existing(JacocoAndroidUnitTestReportExtension::class) {
//		violationRules {
//			rule {
//				limit {
//					counter = "BRANCH"
//					value = "COVEREDRATIO"
//					minimum = BigDecimal.valueOf(1.00)
//				}
//			}
//		}
//	}