From 53595ff8179226896dbeb2b4ae982eb5ddffef11 Mon Sep 17 00:00:00 2001 From: Erwan Croze Date: Tue, 27 Jun 2017 17:30:21 +0200 Subject: [PATCH] Edit gradle file for liblinphone tester --- liblinphone_tester/build.gradle | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/liblinphone_tester/build.gradle b/liblinphone_tester/build.gradle index 8908b9f68..80ee5601e 100644 --- a/liblinphone_tester/build.gradle +++ b/liblinphone_tester/build.gradle @@ -81,17 +81,16 @@ android { release.setRoot('build-types/release') } - testOptions { - unitTests.all { - // All the usual Gradle options. - testLogging { - events "passed", "skipped", "failed", "standardOut", "standardError" - outputs.upToDateWhen {false} - showStandardStreams = true - } - setIgnoreFailures(true) + testOptions { + unitTests.all { + // All the usual Gradle options. + testLogging { + events "passed", "skipped", "failed", "standardOut", "standardError" + outputs.upToDateWhen {false} + showStandardStreams = true } } + } lintOptions { checkReleaseBuilds false @@ -130,5 +129,9 @@ tasks.withType(Test) { showExceptions true showStackTraces true showStandardStreams false + ignoreFailures = true + } + connectedAndroidTest { + ignoreFailures = true } }