1
0
Fork 0

Merge pull request #6653 from glensc/sh-syntax

fix parallel test exit scenario shell syntax
pull/6682/head
Jordi Boggiano 2017-09-12 09:12:25 +02:00 committed by GitHub
commit 080fefa112
1 changed files with 1 additions and 1 deletions

View File

@ -55,4 +55,4 @@ before_script:
script: script:
# run test suite directories in parallel using GNU parallel # 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);'