You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using Kover version 0.7.6 and JaCoCo version 0.8.10 or 0.8.12. When I run the ./gradlew check command on my device, the minimum boundary for line coverage set in my Kover configuration does not seem to be respected.
Despite setting the minimum boundary for line coverage to 67, I receive the following error when running the check:
Rule violated: lines covered percentage is 59.8300, but expected minimum is 67.0000
Rule violated: lines covered percentage is 59.8300, but expected minimum is 100.0000
It appears that Kover has a default minimum boundary of 100, and my configuration is not overriding this default value.
Steps to Reproduce
Use Kover version 0.7.6.
Use JaCoCo version 0.8.10 or 0.8.12.
Configure Kover with the above settings.
Run ./gradlew check.
Expected Behavior
The boundary set in the Kover configuration (minimum 67% line coverage) should override any default values.
Actual Behavior
The default minimum boundary of 100% seems to remain in effect, causing a rule violation error even though the custom boundary is set.
Additional Information
This issue might be caused by Kover not correctly applying the user-defined minimum boundary. Any insights or fixes for this issue would be appreciated.
The text was updated successfully, but these errors were encountered:
I'm using Kover version
0.7.6
and JaCoCo version0.8.10
or0.8.12
. When I run the./gradlew check
command on my device, the minimum boundary for line coverage set in my Kover configuration does not seem to be respected.Here is my configuration:
Despite setting the minimum boundary for line coverage to
67
, I receive the following error when running the check:It appears that Kover has a default minimum boundary of
100
, and my configuration is not overriding this default value.Steps to Reproduce
0.7.6
.0.8.10
or0.8.12
../gradlew check
.Expected Behavior
The boundary set in the Kover configuration (minimum 67% line coverage) should override any default values.
Actual Behavior
The default minimum boundary of 100% seems to remain in effect, causing a rule violation error even though the custom boundary is set.
Additional Information
This issue might be caused by Kover not correctly applying the user-defined minimum boundary. Any insights or fixes for this issue would be appreciated.
The text was updated successfully, but these errors were encountered: