From 1cbef2d3b5d7ff4df2f045a006bfdd640240f991 Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Sat, 4 Apr 2015 21:55:06 +0200 Subject: Enable debug on phpunit --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 3c97a9da..e31b1905 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ before_script: script: - ant prepare - - phpunit --exclude-group command-doctrine $PHPUNIT_FLAGS + - phpunit --exclude-group command-doctrine --debug $PHPUNIT_FLAGS after_script: - | -- cgit v1.2.3 From 9a014e48d65f30d0ca03bcc1eff5243421af52ca Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Sat, 30 May 2015 13:31:54 +0200 Subject: 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. --- .travis.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index e31b1905..8d0cf817 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,16 +30,16 @@ install: - composer self-update # 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"; else PHPUNIT_FLAGS=""; fi; +# before_script: + # - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; else PHPUNIT_FLAGS=""; fi; script: - ant prepare - - phpunit --exclude-group command-doctrine --debug $PHPUNIT_FLAGS - -after_script: - - | - if [ $TRAVIS_PHP_VERSION = '5.6' ]; then - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover - fi + - bin/phpunit --exclude-group command-doctrine --debug $PHPUNIT_FLAGS + +# after_script: + # - | + # if [ $TRAVIS_PHP_VERSION = '5.6' ]; then + # wget https://scrutinizer-ci.com/ocular.phar + # php ocular.phar code-coverage:upload --format=php-clover coverage.clover + # fi -- cgit v1.2.3