Skip to content

Commit

Permalink
try loop 6
Browse files Browse the repository at this point in the history
Signed-off-by: BAStos525 <[email protected]>
  • Loading branch information
BAStos525 committed Oct 18, 2024
1 parent 00a28b4 commit 3e3b60b
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -131,21 +131,19 @@ jacoco {
// }

task testCoverage(type: JacocoReport) {
// Ensure all necessary tasks are complete before running testCoverage
dependsOn "${project.path}:test"
dependsOn "${project.path}:processTestResources"
dependsOn "${project.path}:compileTestKotlin"

executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")

sourceSets sourceSets.main
subprojects.each {
sourceSets it.sourceSets.main
}

reports {
xml.required = true
html.required = true
}
}


test {
useJUnitPlatform()
finalizedBy testCoverage
Expand Down

0 comments on commit 3e3b60b

Please sign in to comment.