Remove debug flag for PHPUnit

This commit is contained in:
Adrien Crivelli 2016-09-09 18:20:21 +09:00
parent 93ccf78dd5
commit 10da9b3620
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ script:
## PHP-CS-Fixer
- ./vendor/bin/php-cs-fixer fix --diff --verbose
## PHPUnit
- ./vendor/bin/phpunit --debug --coverage-clover coverage-clover.xml
- ./vendor/bin/phpunit --coverage-clover coverage-clover.xml
after_script:
- if [ "$TRAVIS_PHP_VERSION" = "7.0" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover tests/coverage-clover.xml ; fi