Repository: tapestry-5 Updated Branches: refs/heads/master 16777c39e -> 3163c83e6
show full exception traces for CI build Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/3163c83e Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/3163c83e Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/3163c83e Branch: refs/heads/master Commit: 3163c83e6566bf5c7b6d31fac50b10c4cb1003b0 Parents: 16777c3 Author: Jochen Kemnade <[email protected]> Authored: Thu Sep 17 16:50:51 2015 +0200 Committer: Jochen Kemnade <[email protected]> Committed: Thu Sep 17 16:50:51 2015 +0200 ---------------------------------------------------------------------- build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/3163c83e/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index f89f765..2c28632 100755 --- a/build.gradle +++ b/build.gradle @@ -205,7 +205,11 @@ subprojects { if (continuousIntegrationBuild){ // Travis runs our builds with TERM=dumb and kills it if we don't produce any // output for 10 minutes, so we log some task execution progress - + + testLogging { + exceptionFormat "full" + } + def numberOfTestsExecuted = 0 afterTest { descriptor, result-> numberOfTestsExecuted++
