Skip to content

Commit 5c49578

Browse files
committed
Adding verbose output
1 parent a0b06d5 commit 5c49578

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

build.gradle

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,22 @@ artifacts {
333333
archives javadocJar, sourcesJar, jar
334334
}
335335

336+
//test {
337+
// testLogging.showExceptions = true
338+
// testLogging.showCauses = true
339+
//}
336340
test {
337-
testLogging.showExceptions = true
338-
testLogging.showCauses = true
339-
}
341+
testLogging {
342+
// Show which test is running
343+
events "passed", "skipped", "failed", "standardOut", "standardError"
344+
345+
// Show standard out and error
346+
showStandardStreams = true
347+
348+
// Optional: show more details
349+
exceptionFormat = "full"
350+
showExceptions = true
351+
showCauses = true
352+
showStackTraces = true
353+
}
354+
}

0 commit comments

Comments
 (0)