Browse Source

Increase koverage threshold

pull/1465/head
Benoit Marty 12 months ago
parent
commit
cd1039ef54
  1. 4
      build.gradle.kts

4
build.gradle.kts

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

Loading…
Cancel
Save