-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpspec.yml
55 lines (55 loc) · 1.42 KB
/
phpspec.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
extensions:
# ... other extensions ...
# leanphp/phpspec-code-coverage
LeanPHP\PhpSpec\CodeCoverage\CodeCoverageExtension:
# Specify a list of formats in which code coverage report should be
# generated.
# Default: [html]
format:
#- text
#- html
- clover
#- php
#- xml
#
# Specify output file/directory where code coverage report will be
# generated. You can configure different output file/directory per
# enabled format.
# Default: coverage
output:
#html: coverage
clover: coverage.xml
#php: coverage.php
#xml: coverage
#
# Should uncovered files be included in the reports?
# Default: true
show_uncovered_files: true
#
# Set lower upper bound for code coverage
# Default: 35
lower_upper_bound: 35
#
# Set high lower bound for code coverage
# Default: 70
high_lower_bound: 70
#
# Whilelist directories for which code generation should be done
# Default: [src, lib]
#
whitelist:
- src
#
# Whiltelist files for which code generation should be done
# Default: empty
#whilelist_files:
#- app/bootstrap.php
#- web/index.php
#
# Blacklist directories for which code generation should NOT be done
#blacklist:
#- src/legacy
#
# Blacklist files for which code generation should NOT be done
#blacklist_files:
#- lib/bootstrap.php