Skip to content

Commit 8850274

Browse files
committed
minor symfony#10950 Fixed the Travis build to avoid exiting too early (stof)
This PR was squashed before being merged into the 2.3 branch (closes symfony#10950). Discussion ---------- Fixed the Travis build to avoid exiting too early currently, failed tests on Travis are exiting the build too early, avoiding to run some tests and maybe even loosing some output. See travis-ci/travis-ci#2346 for more details Commits ------- 2e64fb1 Fixed the Travis build to avoid exiting too early
2 parents 11816c5 + 2e64fb1 commit 8850274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ before_script:
2727
- wget https://phar.phpunit.de/phpunit.phar && rm `which phpunit` && sudo cp phpunit.phar /usr/local/bin/phpunit && sudo chmod +x /usr/local/bin/phpunit
2828

2929
script:
30-
- ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo "Running {} tests"; phpunit --exclude-group tty,benchmark {};' || exit 1
30+
- ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo "Running {} tests"; phpunit --exclude-group tty,benchmark {};' || false
3131
- echo "Running tests requiring tty"; phpunit --group tty

0 commit comments

Comments
 (0)