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:
parent
2ef9b99e9c
commit
2b9cbb978e
1 changed files with 9 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue