From d64eaf2b9b776dee392036d6242390c566261082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Burnichon?= Date: Thu, 11 Feb 2016 20:44:29 +0100 Subject: [PATCH] Group first 2 builds --- .travis.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ba231a78c..c72273075f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,6 @@ sudo: require env: - TEST_SUITE=1 - TEST_SUITE=2 - - TEST_SUITE=3 - php: - 5.5 - 5.6 @@ -50,13 +48,13 @@ before_script: script: - "./node_modules/.bin/gulp test" - | + echo "$TEST_SUITE"; case "$TEST_SUITE" in 1 ) - "./bin/phpunit" --exclude-group legacy ;; + "./bin/phpunit" --exclude-group legacy ; + "./bin/phpunit" --group legacy --exclude-group web ;; 2 ) - "./bin/phpunit" --group legacy --exclude-group web;; - 3 ) - "./bin/phpunit" --group web;; + "./bin/phpunit" --group web ;; esac notifications: