diff options
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 10fd439..fc8a89c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,16 +15,13 @@ matrix: sudo: false -before_install: - - travis_retry composer self-update && composer --version - install: - - travis_retry composer install + - composer install after_script: - | if [ $TRAVIS_PHP_VERSION = '5.6' ]; then - [[ -f ocular.phar ]] || travis_retry wget https://scrutinizer-ci.com/ocular.phar + [[ -f ocular.phar ]] || wget https://scrutinizer-ci.com/ocular.phar php ocular.phar code-coverage:upload --format=php-clover coverage.xml fi @@ -35,3 +32,4 @@ cache: directories: - $HOME/.composer/cache - vendor + - ocular.phar |