You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2015/09/17 16:51:35 UTC

tapestry-5 git commit: show full exception traces for CI build

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 <jo...@eddyson.de>
Authored: Thu Sep 17 16:50:51 2015 +0200
Committer: Jochen Kemnade <jo...@eddyson.de>
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++