Add -html suffix to existing code-coverage shell script.

This commit is contained in:
Andreas Fischer 2014-06-01 13:45:51 +02:00
parent 2c00f074e5
commit b5fed807f3
2 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,6 @@ script:
- travis/run-phpunit.sh
after_success:
- sh -c "if $TRAVIS_SECURE_ENV_VARS; then travis/upload-code-coverage.sh; fi"
- sh -c "if $TRAVIS_SECURE_ENV_VARS; then travis/upload-code-coverage-html.sh; fi"
- sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi"
- sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then php ocular.phar code-coverage:upload --format=php-clover code_coverage/clover.xml; fi"