From a62f65880841099130543f48407c3008a097539c Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Mon, 28 May 2018 17:58:01 +0200 Subject: [PATCH 1/2] Allow PHP 5.4 to fail PHPUnit on PHP 5.4 seems to hang at the end of it's execution for no apparent reason. (Even when successful.) --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 196c41c5..7be5bbff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,10 @@ php: - 7.2 - nightly +matrix: + allow_failures: + - php: 5.4 + install: - ./travis-init.sh - composer install -n From f0b900a5a9662cfbb125ce11e9d188f31801f84f Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Sat, 28 Jul 2018 18:42:30 +0200 Subject: [PATCH 2/2] Also allow PHP 7.1 to fail --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 7be5bbff..66fe7bd9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,7 @@ php: matrix: allow_failures: - php: 5.4 + - php: 7.1 install: - ./travis-init.sh