-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpci.yml
43 lines (34 loc) · 910 Bytes
/
phpci.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
build_settings:
clone_depth: 1 # depth of 1 is a shallow clone, remove this line to clone entire repo
ignore:
- "vendor"
- "tests"
test:
php_mess_detector:
path: "app"
allow_failures: true
php_code_sniffer:
path: "app"
standard: "PSR2"
php_cpd:
standard: "PSR2"
path: "app"
allow_failures: true
# php_docblock_checker:
# path: "app"
php_loc:
directory: "app"
php_parallel_lint:
directory: "app"
php_cs_fixer:
verbose: true
diff: true
level: "psr2"
workingdir: "app"
php_pdepend:
directory: "app"
codeception:
allow_failures: false
config: "codeception.yml"
path: "tests/_output/"
args: "report.xml --no-ansi --coverage-html"