Enable full stacktraces of failed tests in console

This commit is contained in:
Florian Schmaus 2019-02-22 23:02:40 +01:00
parent 2ef9b99e9c
commit 2b9cbb978e
1 changed files with 9 additions and 0 deletions

View File

@ -113,6 +113,15 @@ allprojects {
version += '-SNAPSHOT'
}
test {
// Enable full stacktraces of failed tests. Especially handy
// for environments like Travis.
testLogging {
events "failed"
exceptionFormat "full"
}
}
ext.sharedManifest = manifest {
attributes('Implementation-Version': version,
'Implementation-GitRevision': ext.gitCommit,