File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ install:
31
31
- if [[ $deps = 'low' ]]; then composer update --prefer-dist --no-progress --no-suggest --prefer-stable --prefer-lowest --ansi; fi
32
32
33
33
script :
34
- - if [[ $coverage = 1 ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-php build/cov/coverage-phpunit.cov; else vendor/bin/phpunit; fi
35
- - if [[ $coverage = 1 ]]; then for feature in $(ls -d features/*/ | cut -f2 -d'/' | grep -v bootstrap); do FEATURE=$feature phpdbg -qrr vendor/bin/behat --profile coverage features/$feature; done; else vendor/bin/behat; fi
34
+ - if [[ $coverage = 1 ]]; then phpdbg -qrr vendor/bin/phpunit --colors=never -- coverage-php build/cov/coverage-phpunit.cov; else vendor/bin/phpunit --colors=never ; fi
35
+ - if [[ $coverage = 1 ]]; then for feature in $(ls -d features/*/ | cut -f2 -d'/' | grep -v bootstrap); do FEATURE=$feature phpdbg -qrr vendor/bin/behat --profile coverage features/$feature --no-colors ; done; else vendor/bin/behat --no-colors ; fi
36
36
- if [[ $coverage = 1 ]]; then phpdbg -qrr phpcov.phar merge --clover build/logs/clover.xml build/cov; fi
37
37
- tests/Fixtures/app/console api:swagger:export > swagger.json && swagger validate swagger.json && rm swagger.json
38
- - if [[ $lint = 1 ]]; then php php-cs-fixer.phar fix --dry-run --diff; fi
38
+ - if [[ $lint = 1 ]]; then php php-cs-fixer.phar fix --dry-run --diff --no-ansi ; fi
39
39
40
40
after_success :
41
41
- if [[ $coverage = 1 ]]; then travis_retry php coveralls.phar; fi
You can’t perform that action at this time.
0 commit comments