We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b507597 commit 3626c86Copy full SHA for 3626c86
build.gradle
@@ -235,6 +235,14 @@ subprojects { subproject ->
235
compileKotlin.dependsOn updateCopyrights
236
237
test {
238
+ testLogging {
239
+ events "skipped", "failed"
240
+ showStandardStreams = project.hasProperty("showStandardStreams") ?: false
241
+ showExceptions = true
242
+ showStackTraces = true
243
+ exceptionFormat = 'full'
244
+ }
245
+
246
jacoco {
247
destinationFile = file("$buildDir/jacoco.exec")
248
}
0 commit comments