Skip to content

Commit

Permalink
Fix coverage reporting (#989)
Browse files Browse the repository at this point in the history
- Fixes coverage reporting

{patch}

Signed-off-by: Esta Nagy <nagyesta@gmail.com>
  • Loading branch information
nagyesta authored Feb 12, 2025
1 parent 3a41fe3 commit b838066
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions boosters/booster-cucumber-jvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ tasks.test {
systemProperty("abort-mission.report.directory", layout.buildDirectory.dir("reports/abort-mission/").get().asFile)
includeTags("unit", "integration")
}
finalizedBy(tasks.getByName("jacocoTestReport"))
}

publishing {
Expand Down
1 change: 1 addition & 0 deletions boosters/booster-junit-jupiter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ tasks.test {
systemProperty("abort-mission.report.directory", layout.buildDirectory.dir("reports/abort-mission/").get().asFile)
includeTags("unit", "integration")
}
finalizedBy(tasks.getByName("jacocoTestReport"))
}

publishing {
Expand Down
1 change: 1 addition & 0 deletions boosters/booster-junit4/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ tasks.test {
useJUnitPlatform {
includeTags("unit", "integration")
}
finalizedBy(tasks.getByName("jacocoTestReport"))
}

publishing {
Expand Down
1 change: 1 addition & 0 deletions boosters/booster-testng/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ tasks.test {
systemProperty("abort-mission.report.directory", layout.buildDirectory.dir("reports/abort-mission/").get().asFile)
includeGroups("unit", "integration")
}
finalizedBy(tasks.getByName("jacocoTestReport"))
}

publishing {
Expand Down
1 change: 1 addition & 0 deletions boosters/testkit/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ tasks.processResources.get().finalizedBy(copyLegalDocs)

tasks.test {
useJUnitPlatform()
finalizedBy(tasks.getByName("jacocoTestReport"))
}

publishing {
Expand Down
1 change: 1 addition & 0 deletions mission-control/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ tasks.test {
useJUnitPlatform {
systemProperty("abort-mission.report.directory", layout.buildDirectory.dir("reports/abort-mission/").get().asFile)
}
finalizedBy(tasks.getByName("jacocoTestReport"))
}

publishing {
Expand Down
1 change: 1 addition & 0 deletions mission-report/flight-evaluation-report/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ tasks.javadoc.get().dependsOn(tasks.named("processTemplates"))

tasks.test {
useJUnitPlatform()
finalizedBy(tasks.getByName("jacocoTestReport"))
}

publishing {
Expand Down

0 comments on commit b838066

Please sign in to comment.