Skip to content

Commit

Permalink
fix coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
BenAlvo1 committed Jan 16, 2025
1 parent 08dd5ea commit f752642
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ test {
showStandardStreams = true
}
jacoco {
reports {
html.required = true
}
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}
Expand All @@ -102,7 +105,12 @@ runIdeForUiTests {
}

jacocoTestReport {
dependsOn test // tests are required to run before generating the report
classDirectories.setFrom(instrumentCode)
reports {
csv.required = true
html.required = true
}
}

jacocoTestCoverageVerification {
Expand Down

0 comments on commit f752642

Please sign in to comment.