From 2d0c3b70f8e701b957fc2e5a35ff32ba57ee5d21 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 7 Apr 2016 07:39:20 +0200 Subject: [PATCH] Fix .travis.yml --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4197cd7..4716915 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,8 +24,8 @@ matrix: fast_finish: true script: - if [ $TRAVIS_PHP_VERSION = '5.6' ]; then vendor/bin/phpunit --coverage-clover build/logs/clover.xml; else vendor/bin/phpunit; fi - if [ $TRAVIS_PHP_VERSION = '7.0' ]; then test_old/run-php-src.sh; fi + - if [ $TRAVIS_PHP_VERSION = '5.6' ]; then vendor/bin/phpunit --coverage-clover build/logs/clover.xml; else vendor/bin/phpunit; fi + - if [ $TRAVIS_PHP_VERSION = '7.0' ]; then test_old/run-php-src.sh; fi after_success: if [ $TRAVIS_PHP_VERSION = '5.6' ]; then php vendor/bin/coveralls; fi