Skip to content

Commit

Permalink
Add infection (mutation testing tool) config file
Browse files Browse the repository at this point in the history
  • Loading branch information
ptlis committed Feb 8, 2019
1 parent 6c4a886 commit 5875b6a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions infection.json
@@ -0,0 +1,25 @@
{
"source": {
"directories": [
"src"
]
},
"timeout": 10,
"logs": {
"text": "build/infection.log",
"summary": "build/summary.log",
"perMutator": "build/per-mutator.md"
},
"tmpDir": "/tmp/infection",
"phpUnit": {
"customPath": "./vendor/bin/phpunit"
},
"mutators": {
"@default": true,
"@function_signature": false
},
"testFramework": "phpunit",
"bootstrap": "./tests/bootstrap.php",
"initialTestsPhpOptions": "-d zend_extension=xdebug.so",
"testFrameworkOptions": "-vvv"
}

0 comments on commit 5875b6a

Please sign in to comment.