This message was deleted.
# community-support
s
This message was deleted.
👍 1
j
I know that I can do that "manually". I just wonder in which direction this might go in the future...
FYI with this setup I can avoid the issue above by doing this in the report configuration instead, where everything goes through dependencies instead of direct task dependencies:
Copy code
val codeCoverageResults = project.configurations.getByName("aggregateCodeCoverageReportResults")
cifuzzReport.executionData.setFrom(
    testing.suites.withType(JvmTestSuite::class.java).map {
        artifactsForTestType(codeCoverageResults, objects, it.testType)
    }
)
(
artifactsForTestType
constructs the artifact view for the 'testType')
Note that this requires a "suite" to be registered for each task