Skip to content
This repository has been archived by the owner on Feb 7, 2025. It is now read-only.

Improve automated test output on failure #1618

Merged
merged 9 commits into from
Nov 26, 2024
Prev Previous commit
Next Next commit
Trying out different options
basiliskus committed Nov 26, 2024
commit f238d860493ab2c58783a6800e038ce0b47900de
8 changes: 4 additions & 4 deletions rs-e2e/build.gradle
Original file line number Diff line number Diff line change
@@ -38,11 +38,11 @@ task automatedTest(type: Test) {
include '**/AutomatedTest.*'

testLogging {
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
// events 'failed'
exceptionFormat 'full'
showExceptions true
showCauses true
// showExceptions true
// showCauses true
showStackTraces true
showStandardStreams true
// showStandardStreams true
}
}