From 16b8a8bb49f393194172c317845a1858a2ab30fc Mon Sep 17 00:00:00 2001 From: javier gomez Date: Wed, 22 Jul 2015 16:24:31 +0200 Subject: [PATCH] Allow failures in PHP7 --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fb9db7e..1c5d310 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,12 @@ language: php php: -- 5.4 - 5.5 - 5.6 - 7.0 +matrix: + allow_failures: + - php: 5.6 + - php: 7.0 before_script: - sudo apt-get update -qq # Install Apache @@ -28,4 +31,4 @@ before_script: script: - mv tests/acceptance.suite.dist.yml tests/acceptance.suite.yml -- php vendor/bin/robo run:tests \ No newline at end of file +- php vendor/bin/robo test:acceptance