From c94068721a1ee35f12a55ea759fe12164549f3bb Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Fri, 21 Nov 2014 18:01:35 -0500 Subject: [PATCH] Add the actual stacktrace --- .travis.yml | 4 ++-- app-test/build.gradle | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) 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()