From 0ee043f745fc53d782528128c615aa24a6af1d24 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Sat, 28 Mar 2015 21:45:35 +0100 Subject: Update InstallCommand test They are god damn too long to execute because it launch external command (mostly related to doctrine). So I've added a PHPUnit @group (`command-doctrine`) so that we can avoid launching them on a regular basis, like that: `phpunit --exclude-group command-doctrine` --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 6e938826..3c97a9da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,11 +31,11 @@ install: # build coverage only on one build, to speed up results feedbacks before_script: - - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; fi; + - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; else PHPUNIT_FLAGS=""; fi; script: - ant prepare - - phpunit $PHPUNIT_FLAGS + - phpunit --exclude-group command-doctrine $PHPUNIT_FLAGS after_script: - | -- cgit v1.2.3