From 6f42bee012057610f35c96e56b4ebd41bbf4044a Mon Sep 17 00:00:00 2001 From: Matthieu Mota Date: Thu, 16 Nov 2017 11:01:02 +0100 Subject: [PATCH] Temporary allow failure on PHP 5.3 due to before_install and HHVM support phpunit 6.x --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index c929196..8736bda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,7 @@ php: - hhvm matrix: + fast_finish: true include: # Use precise for PHP 5.3 - php: 5.3 @@ -29,6 +30,10 @@ matrix: # test the latest release (including beta releases) - php: 7.1 env: deps=beta + allow_failures: + - php: 5.3 + dist: trusty # Only fail if dist is trustry + - php: hhvm before_install: - if [ "$deps" = 'beta' ]; then perl -pi -e 's/^}$/,"minimum-stability":"beta"}/' composer.json; fi;