From 20084d0e88b437ce6b37c0b9fc523fbda231261e Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Wed, 15 Feb 2023 15:46:33 +0100 Subject: [PATCH] Code coverage is now 55.89% :rocket: --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1a47a1b38b..f92ea41e2e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 }