-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Labels
Description
Description
I am trying to configure this to show the following:
- passed tests but only ones that are slow
- skipped tests
- failed tests
Here is my configuration
testlogger {
theme 'standard'
showExceptions true
showStackTraces true
showFullStackTraces false
showCauses true
slowThreshold 2000
showSummary true
showSimpleNames true
showPassed true
showSkipped true
showFailed true
showOnlySlow true
showStandardStreams false
showPassedStandardStreams true
showSkippedStandardStreams true
showFailedStandardStreams true
logLevel 'lifecycle'
}However when I set showOnlySlow to true, it does only show the slow ones and stops showing my failures. I have to be able to see which tests are failing. What I really need is showOnlySlowPassed or something equivalent.
Is there a way to do that?