Skip to content

Commit

Permalink
Merge pull request #3115 from cloudfoundry/gradle-verbosity
Browse files Browse the repository at this point in the history
Only show failed tests
  • Loading branch information
duanemay authored Nov 7, 2024
2 parents 4523c7c + 06a6996 commit 2b81ee4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,8 @@ subprojects {
}

testLogging {
events("skipped", "failed", "passed")
events("failed")
exceptionFormat("full")

// Uncomment the following line to see all standard output from tests (there's a ton of it!)
//showStandardStreams = true
}
Expand All @@ -118,9 +117,8 @@ subprojects {
useJUnitPlatform()

testLogging {
events("skipped", "failed", "passed")
events("failed")
exceptionFormat("full")

// Uncomment the following line to see all standard output from tests (there's a ton of it!)
//showStandardStreams = true
}
Expand Down

0 comments on commit 2b81ee4

Please sign in to comment.