Edit gradle file for liblinphone tester

This commit is contained in:
Erwan Croze 2017-06-27 17:30:21 +02:00
parent bf4291712b
commit 53595ff817

View file

@ -81,17 +81,16 @@ android {
release.setRoot('build-types/release') release.setRoot('build-types/release')
} }
testOptions { testOptions {
unitTests.all { unitTests.all {
// All the usual Gradle options. // All the usual Gradle options.
testLogging { testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError" events "passed", "skipped", "failed", "standardOut", "standardError"
outputs.upToDateWhen {false} outputs.upToDateWhen {false}
showStandardStreams = true showStandardStreams = true
}
setIgnoreFailures(true)
} }
} }
}
lintOptions { lintOptions {
checkReleaseBuilds false checkReleaseBuilds false
@ -130,5 +129,9 @@ tasks.withType(Test) {
showExceptions true showExceptions true
showStackTraces true showStackTraces true
showStandardStreams false showStandardStreams false
ignoreFailures = true
}
connectedAndroidTest {
ignoreFailures = true
} }
} }