Disabled color output from lettuce tests in the Jenkins logs

This commit is contained in:
Will Daly
2013-05-15 11:38:11 -04:00
parent b3e959773d
commit 405299712c

View File

@@ -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' ]