From 557381f49ff1b875810446757a8dc79a6b4a69fd Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Tue, 2 Dec 2014 11:39:01 +0100 Subject: [PATCH] Fix the Travis configuration exit should not be used in script commands, because it exits the whole build script. Thus, turning a failure exit code into another failure exit code is not needed. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b019c1926..d11676714 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ before_script: - git config --global user.email travis@example.com script: - - ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml {};' || exit 1 + - ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml {};' git: - depth: 5 \ No newline at end of file + depth: 5