Skip to content

Commit

Permalink
deactivate generation of all test reports
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Lehrner <[email protected]>
  • Loading branch information
daniellehrner committed Jan 17, 2025
1 parent a98e950 commit ae33f8a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,13 @@ tasks.register("verifyDistributions") {
}
}

tasks.withType(Test).configureEach {
if (!project.hasProperty("createReports")) {
reports.html.required = false
reports.junitXml.required = false
}
}

dependencies {
errorprone 'com.google.errorprone:error_prone_core'
// https://github.com/hyperledger/besu-errorprone-checks/
Expand Down

0 comments on commit ae33f8a

Please sign in to comment.