DATAREDIS-249 - Improve logging for tests in Gradle build.

Changed exceptionFormat to full in order to get more detail StackTrace information for exceptions during test execution.
This commit is contained in:
Thomas Darimont
2014-01-15 11:17:04 +01:00
parent da75b0745e
commit bf8facfd51

View File

@@ -208,6 +208,10 @@ task distZip(type: Zip, dependsOn: [jar, docsZip, schemaZip, sourcesJar, javadoc
tasks.withType(Test) {
systemProperty 'runLongTests', System.getProperty('runLongTests')
testLogging {
exceptionFormat = 'full'
}
}
artifacts {