Skip to content

Commit

Permalink
Reduce log pollution for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ckittl committed Jan 14, 2022
1 parent 01b8f26 commit a278d39
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion gradle/scripts/tests.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
test {
useJUnitPlatform()
testLogging {
events "skipped", "failed", "passed"
events "skipped", "failed"
}

// Improve logging for failed Spock tests
testLogging {
exceptionFormat "full"
}
}

Expand Down

0 comments on commit a278d39

Please sign in to comment.