From 64eed4130d6272999da048c4cb7c51609e6bb825 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Mon, 19 Sep 2016 23:24:08 +0200 Subject: [PATCH] Fixing the functional testcases together with Travis CI which stopped due to excessive logging from the Tomcat 7 Maven plugin --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9fa523341..bfea76cbb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ script: # Start the container this will make sure we do not see the debug logging of the Tomcat 7 Maven plugin # which seems to always be set to DEBUG this will fail the build because we generate too much logging - nohup bash -c "java -jar ./webgoat-standalone/target/webgoat-standalone-7.1-SNAPSHOT-exec.jar --port 8888 2>&1 &" - - if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then mvn "-Dbuild.number=$TRAVIS_BUILD_NUMBER" clean install failsafe:integration-test; else mvn failsafe:integration-test; fi + - if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then mvn "-Dbuild.number=$TRAVIS_BUILD_NUMBER" -q clean install failsafe:integration-test; else mvn -q failsafe:integration-test; fi cache: directories: - $HOME/.m2