From 80f1e2fba261f5656afbd73cb7dc63ca58ca63cc Mon Sep 17 00:00:00 2001 From: Claudio Sanches Date: Thu, 18 Jul 2019 23:01:14 -0300 Subject: [PATCH] Remove all support for PHP 5.2 in Travis --- tests/bin/phpunit.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/bin/phpunit.sh b/tests/bin/phpunit.sh index 0a536e6c84f..5cb1920cb8f 100755 --- a/tests/bin/phpunit.sh +++ b/tests/bin/phpunit.sh @@ -6,8 +6,6 @@ fi if [[ ${RUN_CODE_COVERAGE} == 1 ]]; then phpdbg -qrr $HOME/.composer/vendor/bin/phpunit -d memory_limit=-1 -c phpunit.xml --coverage-clover=coverage.clover --exclude-group=timeout $@ -elif [[ ${TRAVIS_PHP_VERSION:0:3} != "5.2" ]]; then - $HOME/.composer/vendor/bin/phpunit -c phpunit.xml $@ else - phpunit -c phpunit.xml $@ + $HOME/.composer/vendor/bin/phpunit -c phpunit.xml $@ fi