From 405299712c807528ee061f3e9c4b3ee2285ab364 Mon Sep 17 00:00:00 2001 From: Will Daly Date: Wed, 15 May 2013 11:38:11 -0400 Subject: [PATCH] Disabled color output from lettuce tests in the Jenkins logs --- jenkins/test_acceptance.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jenkins/test_acceptance.sh b/jenkins/test_acceptance.sh index ba17713a08..c0107938f0 100755 --- a/jenkins/test_acceptance.sh +++ b/jenkins/test_acceptance.sh @@ -38,7 +38,8 @@ TESTS_FAILED=0 export DISPLAY=:1 # Run the lms and cms acceptance tests -rake test_acceptance_lms || TESTS_FAILED=1 -rake test_acceptance_cms || TESTS_FAILED=1 +# (the -v flag turns off color in the output) +rake test_acceptance_lms["-v 3"] || TESTS_FAILED=1 +rake test_acceptance_cms["-v 3"] || TESTS_FAILED=1 [ $TESTS_FAILED == '0' ]