From e8d01c9669671ed8089843ec21c2b3d11b23375b Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Thu, 3 Jul 2014 14:53:01 +0200 Subject: [PATCH] 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. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0be40d36e3..00e07241bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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