For my builds on Travis, I want to be able to read the test results when there are failing tests to see the stacktrace of those failing tests. Currently, these reports are store
The easiest way to get useful output on the console about failing tests is to use the gradle test logging.
test {
testLogging {
events "failed"
exceptionFormat "short"
}
}
For details and more options here have a look at the according chapter in the gradle userguide: http://gradle.org/docs/current/dsl/org.gradle.api.tasks.testing.logging.TestLoggingContainer.html