diff --git a/.travis.yml b/.travis.yml index 76c499a..4be7cf3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: android script: - - ./gradlew test --stacktrace + - ./gradlew test after_success: - - ./gradlew jacocoTestReport coveralls --stacktrace + - ./gradlew jacocoTestReport coveralls diff --git a/app-test/build.gradle b/app-test/build.gradle index 92f888b..7236ba3 100644 --- a/app-test/build.gradle +++ b/app-test/build.gradle @@ -22,6 +22,12 @@ repositories { } } +test { + testLogging { + exceptionFormat = 'full' + } +} + def androidModule = project(':app') def firstVariant = androidModule.android.applicationVariants.toList().first()