Repository Config
filter:
excluded_paths:
- 'tests/*'
checks:
php: true
coding_style:
php: { }
build:
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=some-file'
coverage:
file: 'some-file'
format: 'clover'
Global Config
tools:
# external_code_coverage: true
php_mess_detector: true
php_code_sniffer: true
sensiolabs_security_checker: true
php_code_coverage: true
php_pdepend: true
php_loc:
enabled: true
excluded_dirs: [vendor, tests]
filter:
excluded_paths:
- 'tests/*'
build:
tests:
override:
-
command: 'phpunit --coverage-clover=clover.xml'
coverage:
file: 'clover.xml'
format: 'php-clover'