From c1b3906b9c009fafdc5a00ebd350228edad4e708 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Tue, 11 Aug 2020 12:11:04 +0100 Subject: [PATCH] Insist on new phpunit on php 8 --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d6502239a..51ad41bee 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,11 @@ matrix: - COMPOSER_FLAGS="--ignore-platform-reqs" before_install: - - composer self-update --2 + - | + composer self-update --2 + if [[ $TRAVIS_PHP_VERSION == "nightly" ]]; then + composer require --dev --no-update "phpunit/phpunit:^9.3.2" + fi install: - if [[ $DEPS == 'latest' ]]; then travis_retry composer update --no-interaction $COMPOSER_FLAGS ; fi