Skip to content

Commit 3626c86

Browse files
committed
Enable Verbose Test Logging from Gradle
1 parent b507597 commit 3626c86

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,14 @@ subprojects { subproject ->
235235
compileKotlin.dependsOn updateCopyrights
236236

237237
test {
238+
testLogging {
239+
events "skipped", "failed"
240+
showStandardStreams = project.hasProperty("showStandardStreams") ?: false
241+
showExceptions = true
242+
showStackTraces = true
243+
exceptionFormat = 'full'
244+
}
245+
238246
jacoco {
239247
destinationFile = file("$buildDir/jacoco.exec")
240248
}

0 commit comments

Comments
 (0)