From b7ce21cbd4caa6fb8f1586bef45128147295e266 Mon Sep 17 00:00:00 2001 From: lotyp Date: Fri, 2 Aug 2024 00:03:22 +0300 Subject: [PATCH] ci: add infection config --- app/infection.json.dist | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/infection.json.dist diff --git a/app/infection.json.dist b/app/infection.json.dist new file mode 100644 index 0000000..ebcde0e --- /dev/null +++ b/app/infection.json.dist @@ -0,0 +1,20 @@ +{ + "ignoreMsiWithNoMutations": true, + "logs": { + "text": ".build/infection/infection-log.txt", + "stryker": { + "report": "develop" + } + }, + "minCoveredMsi": 5, + "minMsi": 2, + "phpUnit": { + "configDir": "./" + }, + "source": { + "directories": [ + "src" + ] + }, + "timeout": 10 +}