From 9a6fa3466f59bd5f44b41e148e49de4a6a432091 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Mon, 4 Sep 2017 21:01:59 +0300 Subject: [PATCH] fix parallel test exit scenario. introduced in 4d8b371908 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 626e10d8e..64f3650e7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,4 +55,4 @@ before_script: script: # run test suite directories in parallel using GNU parallel - - ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml --colors=always {} || (echo -e "\e[41mFAILED\e[0m {}" && $(exit 1));' + - ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml --colors=always {} || (echo -e "\e[41mFAILED\e[0m {}" && exit 1);'