aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2015-05-30 13:31:54 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2015-05-30 13:31:54 +0200
commit9a014e48d65f30d0ca03bcc1eff5243421af52ca (patch)
tree9c7c4a7d37afd45a6be511fd1275dbbd05e2025e /.travis.yml
parent1cbef2d3b5d7ff4df2f045a006bfdd640240f991 (diff)
downloadwallabag-9a014e48d65f30d0ca03bcc1eff5243421af52ca.tar.gz
wallabag-9a014e48d65f30d0ca03bcc1eff5243421af52ca.tar.zst
wallabag-9a014e48d65f30d0ca03bcc1eff5243421af52ca.zip
Disable coverage
It takes ages to process and most of the time the build fail for "execution time" too long. Too much time already burned to investigate it. We'll investigate later, it's not a priority atm.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 10 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index e31b1905..8d0cf817 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,16 +30,16 @@ install:
30 - composer self-update 30 - composer self-update
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: 33# before_script:
34 - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; else PHPUNIT_FLAGS=""; 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 --exclude-group command-doctrine --debug $PHPUNIT_FLAGS 38 - bin/phpunit --exclude-group command-doctrine --debug $PHPUNIT_FLAGS
39 39
40after_script: 40# after_script:
41 - | 41 # - |
42 if [ $TRAVIS_PHP_VERSION = '5.6' ]; then 42 # if [ $TRAVIS_PHP_VERSION = '5.6' ]; then
43 wget https://scrutinizer-ci.com/ocular.phar 43 # wget https://scrutinizer-ci.com/ocular.phar
44 php ocular.phar code-coverage:upload --format=php-clover coverage.clover 44 # php ocular.phar code-coverage:upload --format=php-clover coverage.clover
45 fi 45 # fi