-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
Labels
QuestionSupport request issue typeSupport request issue typeS: waiting for clarificationStatus: additional information required to proceedStatus: additional information required to proceed
Description
We're migrating from Java to Kotlin and from JaCoCo to Kover. The structure of source folders:
my_project:
- src
- unitTestSrc
- integrationTestSrc
I use test
to run unit tests and integrationTest
task to execution only tests from integrationTestSrc
.
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 runs integrationTest
(probably because it's of type Test?) and unit tests and somehow merge results where:
- source is covered
- but I also have my integration test (with default/empty package) inside this report as well.
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!
Metadata
Metadata
Assignees
Labels
QuestionSupport request issue typeSupport request issue typeS: waiting for clarificationStatus: additional information required to proceedStatus: additional information required to proceed