Skip to content

Commit

Permalink
don't log passed tests, only failures
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil committed Nov 5, 2024
1 parent 1244698 commit 31c4927
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -160,16 +160,15 @@ tasks.withType<DependencyUpdatesTask> {
}

tasks.withType<Test> {
enabled = !skipTests
testLogging {
events(
TestLogEvent.PASSED,
TestLogEvent.SKIPPED,
TestLogEvent.FAILED
)
showStackTraces = true
exceptionFormat = TestExceptionFormat.FULL
}
enabled = !skipTests
}


Expand Down Expand Up @@ -311,4 +310,4 @@ if (isReleaseBuild) {
}
}

}
}

0 comments on commit 31c4927

Please sign in to comment.