#1175 add test loggin to debug build

This commit is contained in:
Sean Mac Gillicuddy 2019-05-23 15:33:58 +01:00
parent c8f4e8815e
commit 0a41983012

View File

@ -196,6 +196,17 @@ android {
warning 'InvalidPackage'
warning 'StringFormatInvalid'
}
testOptions {
unitTests.all {
// All the usual Gradle options.
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
outputs.upToDateWhen {false}
showStandardStreams = true
}
}
}
flavorDimensions "default"