diff --git a/.travis.yml b/.travis.yml index cd14c610..777ccc02 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,7 +38,11 @@ before_script: script: ./tests/run.sh -s $NTESTER_FLAGS ./tests/cases after_script: - - if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then php vendor/bin/coveralls -c tests/.coveralls.yml -v; fi + - if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then + wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar + && php coveralls.phar --verbose --config tests/.coveralls.yml + || true; + fi after_failure: # Print *.actual content & log content diff --git a/composer.json b/composer.json index b8497321..608031d6 100644 --- a/composer.json +++ b/composer.json @@ -19,8 +19,7 @@ "nette/caching": "~2.2", "mockery/mockery": "~0.9", "tracy/tracy": "~2.3", - "nette/di": "~2.3", - "satooshi/php-coveralls": "~1.0.0" + "nette/di": "~2.3" }, "autoload": { "psr-4": { "Nextras\\Dbal\\": "src/" },