forked from woocommerce/woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.scrutinizer.yml
57 lines (54 loc) · 1.27 KB
/
.scrutinizer.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
build:
environment:
php: '7.1'
mysql: true
postgresql: false
redis: false
node: false
apache2:
modules: ['rewrite']
variables:
WP_VERSION: 'latest'
dependencies:
before:
- bash tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover=results'
coverage:
file: 'results'
format: 'clover'
tools:
sensiolabs_security_checker: true
php_code_sniffer:
config:
standard: "WordPress"
checks:
php:
variable_existence: false
verify_access_scope_valid: false
verify_argument_usable_as_reference: false
verify_property_names: false
no_global_keyword: false
psr2_switch_declaration: false
psr2_control_structure_declaration: false
psr2_class_declaration: false
one_class_per_file: false
no_exit: false
avoid_superglobals: false
avoid_closing_tag: false
filter:
excluded_paths:
- tests/*
- apigen/*
- dummy-data/*
- i18n/*
- includes/api/legacy/*
- includes/legacy/*
- includes/libraries/*
- includes/updates/*
- includes/gateways/simplify-commerce/*
- includes/shipping/legacy-*
- includes/wc-deprecated-functions.php
- includes/class-wc-legacy-api.php