This commit is contained in:
Nicolas Grekas 2015-04-07 11:51:50 +02:00
parent 1de61fad0d
commit fea6eabd44
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ install:
- if [ "$deps" = "no" ]; then composer --prefer-source install; fi;
- components=$(find src/Symfony -mindepth 3 -type f -name phpunit.xml.dist -printf '%h\n')
- if [ "$deps" != "no" ]; then sh .travis.sh $TRAVIS_BRANCH $components; fi;
- if [ "$deps" = "2.7" ]; then git fetch origin 2.7; git checkout -m origin/2.7; export COMPOSER_ROOT_VERSION=2.7.x-dev fi;
- if [ "$deps" = "2.7" ]; then git fetch origin 2.7; git checkout -m origin/2.7; export COMPOSER_ROOT_VERSION=2.7.x-dev; fi;
script:
- if [ "$deps" = "no" ]; then echo "$components" | parallel --gnu --keep-order 'echo -e "\\nRunning {} tests"; phpunit --exclude-group tty,benchmark,intl-data {} || (echo -e "\\e[41mKO\\e[0m {}" && $(exit 1));'; fi;