-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinfection.json5
More file actions
23 lines (23 loc) · 881 Bytes
/
Copy pathinfection.json5
File metadata and controls
23 lines (23 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "vendor/infection/infection/resources/schema.json",
"source": {
"directories": ["src"],
"excludes": ["registration.php"],
},
"timeout": 10,
// Quality ratchet: fails the run (locally and in CI) when the covered-code
// MSI drops below this floor. Raise it as the test suite improves.
// 84 matches the badge's "yellow" band; the remaining escaped mutants are
// dominated by paths a unit test cannot observe deterministically
// (string concatenation in messages, regex anchors, OS-specific path
// normalisation, TTY/prompt fallbacks, HTTP timeout values).
"minCoveredMsi": 84,
"logs": {
"text": "reports/infection/infection.log",
"html": "reports/infection/infection.html",
"summary": "reports/infection/summary.log",
},
"mutators": {
"@default": true,
},
}