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 16, 2025
1 parent 1e7f6f6 commit 463a5ef
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 463a5ef

Please sign in to comment.