Separate Kover report for Integration tests #732
Labels
Question
Support request issue type
S: waiting for clarification
Status: additional information required to proceed
We're migrating from Java to Kotlin and from JaCoCo to Kover. The structure of source folders:
my_project:
I use
test
to run unit tests andintegrationTest
task to execution only tests fromintegrationTestSrc
.How can I create a separate tasks for unit test coverage and integration? I need to run the integration tests in pipeline only after the unit test coverage verification is passed.
Currently (I just simply added the Kover), when I run
koverHtmlReport
it runsintegrationTest
(probably because it's of type Test?) and unit tests and somehow merge results where:So, I need, basically, run unit tests, generate/verify , after this run integration test and generateReport/verifyRules only for what is covered by Int tests.
Thanks in advance!
The text was updated successfully, but these errors were encountered: