Skip to content

Commit

Permalink
Streamline test output (JabRef#10762)
Browse files Browse the repository at this point in the history
* Try to make test outputs more readable

* Fix verbose test output

* Revert gradle optimization
  • Loading branch information
koppor authored Jan 9, 2024
1 parent 5636ad0 commit 01c3e15
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -443,33 +443,27 @@ test {
}

testlogger {
theme 'standard-parallel'
// See https://github.com/radarsh/gradle-test-logger-plugin#configuration for configuration options

theme 'standard'

showPassed false
showSkipped false

showCauses false
showStackTraces false
}

tasks.register('databaseTest', Test) {
useJUnitPlatform {
includeTags 'DatabaseTest'
}

testLogging {
// set options for log level LIFECYCLE
events = ["FAILED"]
exceptionFormat "full"
}
}

tasks.register('fetcherTest', Test) {
useJUnitPlatform {
includeTags 'FetcherTest'
}

testLogging {
// set options for log level LIFECYCLE
events = ["FAILED"]
exceptionFormat "full"
}
}

tasks.register('guiTest', Test) {
Expand Down

0 comments on commit 01c3e15

Please sign in to comment.