Enable Scrutinizer build failure if coverage decrease

This commit is contained in:
Adrien Crivelli 2017-12-03 17:17:00 +09:00
parent 90366f9dd1
commit 3068fcfb12
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,6 @@
checks: checks:
php: true php: true
coding_style: coding_style:
php: php:
spaces: spaces:
@ -8,6 +9,20 @@ coding_style:
around_operators: around_operators:
concatenation: true concatenation: true
build:
nodes:
analysis:
tests:
override:
- phpcs-run
- php-scrutinizer-run
tools: tools:
external_code_coverage: external_code_coverage:
timeout: 3600 timeout: 3600
build_failure_conditions:
- 'elements.rating(<= C).new.exists' # No new classes/methods with a rating of C or worse allowed
- 'issues.severity(>= MAJOR).new.exists' # New issues of major or higher severity
- 'project.metric_change("scrutinizer.test_coverage", < 0)' # Code Coverage decreased from previous inspection
- 'patches.label("Unused Use Statements").new.exists' # No new unused imports patches allowed