From 7542370b441bd5bc7505912b57a4408f815186a8 Mon Sep 17 00:00:00 2001 From: Risto Lahtela Date: Wed, 26 Dec 2018 21:58:06 +0200 Subject: [PATCH] Added '--info' to travis test script --- scripts/runTests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/runTests.sh b/scripts/runTests.sh index eba4e80bf..c0eab78b7 100644 --- a/scripts/runTests.sh +++ b/scripts/runTests.sh @@ -1,10 +1,10 @@ cd Plan if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then - gradle test + gradle test --info fi if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then - gradle test + gradle test --info gradle sonarqube fi