Skip to content

Commit c42302e

Browse files
committed
minor #11793 Disabled the PHPUnit self-update on Travis (stof)
This PR was merged into the 2.3 branch. Discussion ---------- Disabled the PHPUnit self-update on Travis The 4.2.2 release available on Travis currently ships with a broken self-update command. Given that it is new enough to contain the fixes for the other bugs affecting the build, it is fine to keep using the available phar without updating it. This avoids making all builds except 5.3.3 fail before running tests. FYI, the bug itself is already fixed in PHPUnit so 4.2.3 will have a working command. Commits ------- 0fca352 Disabled the PHPUnit self-update on Travis
2 parents 37f2c3d + 0fca352 commit c42302e

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
@@ -23,7 +23,7 @@ before_script:
2323
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm-nightly" ]; then echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
2424
- sudo locale-gen fr_FR.UTF-8 && sudo update-locale
2525
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install
26-
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "5.3.3" ]; then phpunit --self-update; fi;'
26+
# - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "5.3.3" ]; then phpunit --self-update; fi;'
2727

2828
script:
2929
- ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo "Running {} tests"; phpunit --exclude-group tty,benchmark {};'

0 commit comments

Comments
 (0)