From 265d69d38fbc4e4af1028618fa9cb4fa5fb81124 Mon Sep 17 00:00:00 2001 From: Sebastian Krebs Date: Fri, 11 Jan 2013 21:47:32 +0100 Subject: [PATCH] Allow the PHP5.5-build to fail PHP5.5 is not officially released, so making it part of the overall build-success seems not useful. It can be simply re-enabled it, when PHP5.5 is released, or as soon as the builds doesn't fail anymore. --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 81af8c474..a77099b0e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,15 @@ language: php -php: +php: - 5.3.3 - 5.3 - 5.4 - 5.5 +matrix: + allow_failures: + - php: 5.5 + before_script: composer install script: phpunit -c tests/complete.phpunit.xml