From 7b5e367678d46e14eb7d155c1632633482e411ea Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Sat, 10 Sep 2016 19:10:42 +0200 Subject: [PATCH 1/2] [travis] Allow hhvm and nightly to fail --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7399f5f..435024a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,9 @@ install: script: - phpenv rehash - - phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p \ No newline at end of file + - phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p + +matrix: + allow_failures: + - php: hhvm + - php: nightly \ No newline at end of file From 22cf562659e141d47df34ace2ccdf2995e70a65b Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Sat, 10 Sep 2016 19:12:55 +0200 Subject: [PATCH 2/2] [travis] Allow build to finish as soon as possible This will allow the entire build to fail if one case failed without waiting for the remaining cases to finish their tests --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 435024a..969c1b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ script: - phpcs . --standard=phpcs.xml --warning-severity=0 --extensions=php -p matrix: + fast_finish: true allow_failures: - php: hhvm - php: nightly \ No newline at end of file