Add the actual stacktrace

build-21
Bradlee Speice 2014-11-21 18:01:35 -05:00
parent bbe2e117a0
commit c94068721a
2 changed files with 8 additions and 2 deletions

View File

@ -2,7 +2,7 @@
language: android
script:
- ./gradlew test --stacktrace
- ./gradlew test
after_success:
- ./gradlew jacocoTestReport coveralls --stacktrace
- ./gradlew jacocoTestReport coveralls

View File

@ -22,6 +22,12 @@ repositories {
}
}
test {
testLogging {
exceptionFormat = 'full'
}
}
def androidModule = project(':app')
def firstVariant = androidModule.android.applicationVariants.toList().first()