File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,9 +39,10 @@ before_script:
3939 - mkdir -p build/logs
4040
4141script :
42- - phpunit -v --coverage-clover build/logs/clover.xml
42+ - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpunit --coverage-clover build/logs/clover.xml; fi;
43+ - if [ "$TRAVIS_PHP_VERSION" = "hhvm" ]; then phpunit; fi;
4344
4445after_script :
45- - php vendor/bin/coveralls -v
46- - wget https://scrutinizer-ci.com/ocular.phar -t 3
47- - php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
46+ - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;
47+ - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar -t 3; fi;
48+ - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi;
You can’t perform that action at this time.
0 commit comments