mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-25 07:42: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'
|
version += '-SNAPSHOT'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test {
|
||||||
|
// Enable full stacktraces of failed tests. Especially handy
|
||||||
|
// for environments like Travis.
|
||||||
|
testLogging {
|
||||||
|
events "failed"
|
||||||
|
exceptionFormat "full"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ext.sharedManifest = manifest {
|
ext.sharedManifest = manifest {
|
||||||
attributes('Implementation-Version': version,
|
attributes('Implementation-Version': version,
|
||||||
'Implementation-GitRevision': ext.gitCommit,
|
'Implementation-GitRevision': ext.gitCommit,
|
||||||
|
|
Loading…
Reference in a new issue