Skip to content

Commit

Permalink
Adds a Gradle task to generate an aggregate test report. This is not …
Browse files Browse the repository at this point in the history
…currently used by any automation, but this makes it available for a developer to use. (opensearch-project#3325)

Signed-off-by: David Venable <[email protected]>
  • Loading branch information
dlvenable authored and asifsmohammed committed Sep 27, 2023
1 parent 863f896 commit 2d82fd2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,11 @@ configure(coreProjects) {
check.dependsOn jacocoTestCoverageVerification
}

task generateAggregateTestReport(type: TestReport) {
destinationDirectory = file("${layout.buildDirectory}/reports/tests")
reportOn subprojects*.test
}

licenseReport {
excludeOwnGroup = true
excludeBoms = true
Expand Down

0 comments on commit 2d82fd2

Please sign in to comment.