diff --git a/app/build.gradle b/app/build.gradle index 5103af08b..e5967b14b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -157,8 +157,17 @@ android { } testOptions { - // prevent tests from dying on android.util.Log calls - unitTests.returnDefaultValues = true + unitTests { + // prevent tests from dying on android.util.Log calls + returnDefaultValues = true + all { + // All the usual Gradle options. + testLogging { + events "skipped", "failed", "standardOut", "standardError" + showStandardStreams = true + } + } + } } lintOptions {