Browse Source

Code coverage is now 55.89% 🚀

jme/20-permission-management
Benoit Marty 2 years ago
parent
commit
20084d0e88
  1. 4
      build.gradle.kts

4
build.gradle.kts

@ -205,11 +205,11 @@ koverMerged { @@ -205,11 +205,11 @@ koverMerged {
name = "Global minimum code coverage."
target = kotlinx.kover.api.VerificationTarget.ALL
bound {
minValue = 50
minValue = 55
// Setting a max value, so that if coverage is bigger, it means that we have to change minValue.
// For instance if we have minValue = 25 and maxValue = 30, and current code coverage is now 37.32%, update
// minValue to 35 and maxValue to 40.
maxValue = 55
maxValue = 60
counter = kotlinx.kover.api.CounterType.INSTRUCTION
valueType = kotlinx.kover.api.VerificationValueType.COVERED_PERCENTAGE
}

Loading…
Cancel
Save