1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-28 10:40:47 +02:00

Lower build verbosity on travis

while still showing failed tests.
This commit is contained in:
Erik Johansson
2017-12-29 23:36:55 +01:00
parent 37588de24b
commit ef74c7acd6
2 changed files with 9 additions and 1 deletions

View File

@@ -23,4 +23,4 @@ after_success:
- chmod +x ./upload_apk.sh
- ./upload_apk.sh
script: cd android_app && ./gradlew -i testDebugUnitTest assembleDebug
script: cd android_app && ./gradlew testDebug assembleDebug

View File

@@ -34,3 +34,11 @@ dependencies {
testCompile 'junit:junit:4.12'
}
tasks.withType(Test) {
testLogging {
exceptionFormat "full"
events "started", "skipped", "passed", "failed"
showStandardStreams true
}
}