You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but the only report that ever gets built is jacocoTestReport.xml
based on my configuration above I would expect an additional jacocoTestIntegrationReport.xml to be created as well.
I have tried a number of was to attempt to force it to generate the report but nothing seems to work.
In the sub-module I have added:
tasks.named<JacocoReport>("jacocoTestIntegrationReport") {
val test = tasks.named<Test>("test")
val testIntegration = tasks.named<Test>("testIntegration")
executionData(test, testIntegration)
reports {
xml.isEnabled = true
csv.isEnabled = false
html.destination = file("$buildDir/jacocoHtml")
}
}
Hoping that would do something but nothing is working.
It seems to me jacoco is working fine since it is outputting the junit test report but test-sets that is not properly providing the data for jacoco to generate a report.
I hope I am just missing something trivial but at this point I can not find it.
The text was updated successfully, but these errors were encountered:
I have a multi module project using gradle kotlin DSL and I have configured the integration test set:
I have configured Jacoco:
but the only report that ever gets built is
jacocoTestReport.xml
based on my configuration above I would expect an additional
jacocoTestIntegrationReport.xml
to be created as well.I have tried a number of was to attempt to force it to generate the report but nothing seems to work.
In the sub-module I have added:
Hoping that would do something but nothing is working.
It seems to me jacoco is working fine since it is outputting the junit test report but test-sets that is not properly providing the data for jacoco to generate a report.
I hope I am just missing something trivial but at this point I can not find it.
The text was updated successfully, but these errors were encountered: