kotlinx-kover
kotlinx-kover copied to clipboard
The following report filtering features have been implemented: - include filter by classes annotated with specified annotations - include and exclude filters by classes that inherit the specified class or...
**What is your use-case and why do you need this feature?** I would like to speed up my build by aggregating some tests into a single module. At the same...
**Describe the bug** Same as for regular object, companion object with only should be excluded from report **Expected behavior** `MyInterface` should be excluded from report **Reproducer** ``` interface MyInterface {...
When I run below command it succeeds but no binary file being generated ```groovy commandLine( "java", "-jar", koverJar.canonicalPath, "instrument", outputDir, "--dest", outputDir, ) ``` Am I missing something?
**Describe the bug** When generating coverage compose last lines are not covered check screenshot, I have tried will all next version `0.7.x` and `0.8.x` none of them are working. **Errors**...
It is necessary to understand whether it is possible to add support for composite builds in Kover. If this is feasible, then it is necessary to think through the ways...
# What is your use-case and why do you need this feature? I recently put focus into this project while I was researching it for a potential replacement on JaCoCo....
**What is your use-case and why do you need this feature?** Since `0.8.0-Beta2`, Kover successfully aggregates Android modules. Given the following setup at the root project: ```kotlin dependencies { kover(":app")...
Hi I am on version 1.0 of kover and want to aggregate all the coverage into a single html or txt file and not sure how to do that. I...