From 54f6cbc6064e56e92ab59db46f99f9ff815d055d Mon Sep 17 00:00:00 2001 From: mAAdhaTTah Date: Mon, 27 Jul 2015 09:24:08 -0400 Subject: [PATCH] Switch to local phpunit This ensures consistency across platforms and testing by using the same version of PHPUnit, rather than whatever is globally installed by the system. --- .travis.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4621b02..3895ddb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ before_script: - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source script: - - phpunit --coverage-text --coverage-clover=coverage.clover + - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_script: - if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi diff --git a/composer.json b/composer.json index 3d45275..f36a035 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ } }, "scripts": { - "test": "phpunit" + "test": "vendor/bin/phpunit" }, "extra": { "branch-alias": {