forked from sebastianbergmann/phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfection.json5.dist
More file actions
22 lines (22 loc) · 783 Bytes
/
Copy pathinfection.json5.dist
File metadata and controls
22 lines (22 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"$schema": "https://raw.githubusercontent.com/infection/infection/0.28.1/resources/schema.json",
"testFrameworkOptions": "--testsuite=unit",
"source": {
"directories": [
"src"
],
"excludes": [
// causes errors during loading xml fies
"Util/Xml/Xml.php",
// test causes creation of files in project root when mutated
"TextUI/Output/Printer/DefaultPrinter.php",
// causes syntax errors since invalid PHP code is generated
"{Framework/MockObject/Generator/.*}",
// causes issues with saving and reading result cache json files, failing phpunit
"{Runner/ResultCache/.*}",
]
},
"mutators": {
"@default": true,
}
}