Simplified the Travis test command

There is no reason to turn a failure into a different failure. And this
will avoid Travis to say that the "false" command failed.
This commit is contained in:
Christophe Coevoet 2014-07-03 14:53:01 +02:00
parent 5f8ee9d596
commit e8d01c9669
1 changed files with 1 additions and 1 deletions

View File

@ -26,5 +26,5 @@ before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "5.3.3" ]; then phpunit --self-update; fi;'
script:
- ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo "Running {} tests"; phpunit --exclude-group tty,benchmark {};' || false
- ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo "Running {} tests"; phpunit --exclude-group tty,benchmark {};'
- echo "Running tests requiring tty"; phpunit --group tty