Create separate report for each Gradle test task #704
Labels
Feature
Feature request issue type
S: waiting for clarification
Status: additional information required to proceed
What is your use-case and why do you need this feature?
We currently have two Gradle tasks -
test
andintegrationTest
. These test tasks run in separate steps in our CI workflow. My use case is to generate a Kover report for each of these CI steps and upload them to Codecov. It should basically look like so:unit_tests
CI step:integration_tests
CI stepDescribe the solution you'd like
I know that
disabledForTestTasks.add("integrationTest")
exists, but what I would like is to conditionally enable/disable coverage from a test task. So disableintegrationTest
when running theunit_tests
CI step, and similarly disabletest
when running theintegration_tests
CI stepThe text was updated successfully, but these errors were encountered: