aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-01-14 14:10:33 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-01-15 09:35:39 +0100
commit1d405d0e62a708928bccd2222ebd89d4804231f9 (patch)
tree70e65eb7d3b550c54f235a1ff1d7ab63b8a9c2e8 /.travis.yml
parentc38d27d4216bf74d6d3ae8f8f22d68923418ad80 (diff)
downloadwallabag-1d405d0e62a708928bccd2222ebd89d4804231f9.tar.gz
wallabag-1d405d0e62a708928bccd2222ebd89d4804231f9.tar.zst
wallabag-1d405d0e62a708928bccd2222ebd89d4804231f9.zip
Remove some commented code
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 0 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml
index 287369e3..07d66f88 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -43,17 +43,8 @@ before_script:
43 - if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi; 43 - if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi;
44 # disable xdebug since we don't use code-coverage for now 44 # disable xdebug since we don't use code-coverage for now
45 - if [[ $TRAVIS_PHP_VERSION != '5.6' && $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then phpenv config-rm xdebug.ini; fi 45 - if [[ $TRAVIS_PHP_VERSION != '5.6' && $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then phpenv config-rm xdebug.ini; fi
46 # build coverage only on one build, to speed up results feedbacks
47 # - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; else PHPUNIT_FLAGS=""; fi;
48 - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag;' -U postgres; fi; 46 - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag;' -U postgres; fi;
49 47
50script: 48script:
51 - ant prepare-$DB 49 - ant prepare-$DB
52 - bin/phpunit -v 50 - bin/phpunit -v
53
54# after_script:
55 # - |
56 # if [ $TRAVIS_PHP_VERSION = '5.6' ]; then
57 # wget https://scrutinizer-ci.com/ocular.phar
58 # php ocular.phar code-coverage:upload --format=php-clover coverage.clover
59 # fi