forked from LycheeOrg/Lychee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodecov.yml
53 lines (52 loc) · 1.25 KB
/
codecov.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
{
"codecov": {
"require_ci_to_pass": true
},
"comment": {
"behavior": "default",
"require_base": false,
"require_changes": true,
"require_head": true
},
"github_checks": {
"annotations": false
},
"coverage": {
"precision": 2,
"round": "down",
"status": {
"changes": false,
"patch": {
"default": {}
},
"project": {
"default": {
"target": 50%
}
}
}
},
"ignore": [
"^app/Console/.*",
"^app/Exceptions/.*",
"^app/Http/ControllersFunctions/Diagnostics/.*",
"^app/Http/Controllers/Auth/.*",
"^app/Http/Middleware/LoginCheck.*",
"^app/Http/Middleware/VerifyCsrfToken.*",
"^app/Http/Middleware/RedirectIfAuthenticated.*",
"^app/Providers/BroadcastServiceProvider.*"
],
"parsers": {
"gcov": {
"branch_detection": {
"conditional": true,
"loop": true,
"macro": false,
"method": false
}
},
"javascript": {
"enable_partials": false
}
}
}