Skip to content

Commit

Permalink
Fine-grained test logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dmikurube committed Feb 9, 2024
1 parent 14285b2 commit 2902fbb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,13 @@ gemPush {

test {
testLogging {
outputs.upToDateWhen { false }
events "passed", "skipped", "failed", "standardOut", "standardError"
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
showCauses = true
showExceptions = true
showStackTraces = true
showStandardStreams = true
outputs.upToDateWhen { false }
}
}

Expand Down

0 comments on commit 2902fbb

Please sign in to comment.