aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-03-28 21:45:35 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-03-31 22:48:01 +0200
commit0ee043f745fc53d782528128c615aa24a6af1d24 (patch)
tree9ac6e40e10d078a0bbd87e69fb99a083fb29f2aa /.travis.yml
parent371ac69a6bd6325929e4efee7958682a6b1666f7 (diff)
downloadwallabag-0ee043f745fc53d782528128c615aa24a6af1d24.tar.gz
wallabag-0ee043f745fc53d782528128c615aa24a6af1d24.tar.zst
wallabag-0ee043f745fc53d782528128c615aa24a6af1d24.zip
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`
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 6e938826..3c97a9da 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -31,11 +31,11 @@ install:
31 31
32# build coverage only on one build, to speed up results feedbacks 32# build coverage only on one build, to speed up results feedbacks
33before_script: 33before_script:
34 - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; fi; 34 - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; else PHPUNIT_FLAGS=""; fi;
35 35
36script: 36script:
37 - ant prepare 37 - ant prepare
38 - phpunit $PHPUNIT_FLAGS 38 - phpunit --exclude-group command-doctrine $PHPUNIT_FLAGS
39 39
40after_script: 40after_script:
41 - | 41 - |