-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.scrutinizer.yml
More file actions
31 lines (29 loc) · 863 Bytes
/
.scrutinizer.yml
File metadata and controls
31 lines (29 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
build:
nodes:
analysis:
project_setup:
override:
- 'true'
tests:
override:
- php-scrutinizer-run
-
command: phpcs-run
use_website_config: true
tests: true
coverage:
tests:
override:
- command: vendor/bin/phpunit --bootstrap tests/Bootstrap.php --configuration phpunit.xml tests/src/
coverage:
file: tests/nb-phpunit-coverage.xml # <- Set this to where we find the coverage data.
# The path is relative to the current directory.
format: clover
filter:
excluded_paths:
- 'vendor/*'
- 'tests/*'
checks:
php: true
coding_style:
php: { }