1
0
Fork 0

fix parallel test exit scenario. introduced in 4d8b371908

pull/6653/head
Elan Ruusamäe 2017-09-04 21:01:59 +03:00
parent d9885d5b3b
commit 9a6fa3466f
1 changed files with 1 additions and 1 deletions

View File

@ -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);'