Edit gradle file for liblinphone tester
This commit is contained in:
parent
bf4291712b
commit
53595ff817
1 changed files with 12 additions and 9 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue