Skip to content

Commit

Permalink
travis debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Miller committed Feb 26, 2016
1 parent 1b45bd1 commit 031cb93
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions test/build.gradle
Expand Up @@ -78,16 +78,18 @@ dependencies {
test {
inputs.file project(':').jar.archivePath

minHeapSize = "128m"
maxHeapSize = "512m"
minHeapSize = '128m'
maxHeapSize = '512m'

// testLogging.showStandardStreams = true
// beforeTest { descriptor ->
// logger.lifecycle("Running test: " + descriptor)
// }
//
// // listen to standard out and standard error of the test JVM(s)
// onOutput { descriptor, event ->
// logger.lifecycle("Test: " + descriptor + " produced standard out/err: " + event.message )
// }
if (System.getenv('TRAVIS') == 'true') {
testLogging.showStandardStreams = true
beforeTest { descriptor ->
logger.lifecycle("Running test: " + descriptor)
}

// listen to standard out and standard error of the test JVM(s)
onOutput { descriptor, event ->
logger.lifecycle("Test: " + descriptor + " produced standard out/err: " + event.message)
}
}
}

0 comments on commit 031cb93

Please sign in to comment.