1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-25 05:22:06 +01:00

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

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,