Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
BenAlvo1 committed Jan 16, 2025
1 parent 361d462 commit 08dd5ea
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ test {
showStackTraces true
showStandardStreams = true
}
finalizedBy jacocoTestReport
jacoco {
includeNoLocationClasses = true
excludes = ["jdk.internal.*"]
}
}

runIdeForUiTests {
Expand All @@ -99,12 +102,11 @@ runIdeForUiTests {
}

jacocoTestReport {
dependsOn test // tests are required to run before generating the report
reports {
xml.required = false
csv.required = true
//html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
}
classDirectories.setFrom(instrumentCode)
}

jacocoTestCoverageVerification {
classDirectories.setFrom(instrumentCode)
}

publishPlugin {
Expand Down

0 comments on commit 08dd5ea

Please sign in to comment.