From e7e5b6af458ea80e7eb1409bca2d229371da2522 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 18 Feb 2016 11:55:07 +0100 Subject: [PATCH] Reduce number of lint runs in tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b492094268..6d99a86d4d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,8 +39,8 @@ before_script: script: - ant clean - - ant locales - - ant lint + - if [ $CI_MODE != release ] ; then ant locales ; fi + - if [ $CI_MODE = test -o $CI_MODE = hhvm ] ; then ant lint; fi - case $CI_MODE in hhvm) ant phpunit-hhvm ;; test) ant phpunit ;;