From abbb8bbf559164a8261f18fe442315026533754b Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 24 Oct 2019 13:37:24 +0100 Subject: [PATCH] travis.sh: allow latest phpunit v7 now that we have XML not ready to move to v8 yet because of BC breaks --- tests/travis.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/travis.sh b/tests/travis.sh index b0ccce1e89..049ec05269 100755 --- a/tests/travis.sh +++ b/tests/travis.sh @@ -21,9 +21,7 @@ if [ $? -ne 0 ]; then exit 1 fi -#Run PHPUnit tests -#7.5.12 introduces changes that set the build on fire because we don't ship libxml - TODO FIX -curl https://phar.phpunit.de/phpunit-7.5.11.phar --silent --location -o phpunit.phar +curl https://phar.phpunit.de/phpunit-7.phar --silent --location -o phpunit.phar "$PHP_BINARY" phpunit.phar --bootstrap vendor/autoload.php --fail-on-warning tests/phpunit || exit 1 #Run-the-server tests