Last active
August 13, 2019 11:37
-
-
Save Rarst/db65328d1c94eeba38f4dcc05d697c63 to your computer and use it in GitHub Desktop.
Scrutinizer config to install PHPUnit on the fly, without shipping in project dependencies.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filter: | |
excluded_paths: | |
- 'tests/*' | |
checks: | |
php: true | |
build: | |
environment: | |
php: | |
version: 7.2 | |
dependencies: | |
before: | |
- composer require phpunit/phpunit:^7.0 --dev | |
tests: | |
override: | |
- | |
command: vendor/bin/phpunit --coverage-clover=clover.xml | |
coverage: | |
file: clover.xml | |
format: php-clover |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment