From 6a1d5bd9236f7d8deece113656c3f2eedfc55519 Mon Sep 17 00:00:00 2001 From: Marco Pivetta <4290845+uzibhalepu@users.noreply.github.com> Date: Sun, 13 Nov 2022 13:58:22 +0100 Subject: [PATCH] Reducing mutation test core threshold This patch reduces code size, therefore leading to generally lower scores. Until we completely switch to `pcov` and the upstream issues with `sebastianbergmann/php-code-coverage` are resolved, we will keep having sub-100% mutation test scores. Ref: https://github.com/sebastianbergmann/php-code-coverage/issues/945 Ref: https://github.com/sebastianbergmann/php-code-coverage/commit/c304be7d8aa00a71cf8fe763a4b92e14d3f67f4d Ref: https://github.com/laminas/laminas-continuous-integration-action/issues/130 Ref: https://github.com/sebastianbergmann/php-code-coverage/issues/953 --- infection.json.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infection.json.dist b/infection.json.dist index b12d418..2fea2d7 100644 --- a/infection.json.dist +++ b/infection.json.dist @@ -16,6 +16,6 @@ "IdenticalEqual": false, "NotIdenticalNotEqual": false }, - "minMsi": 90.3, + "minMsi": 90.1, "minCoveredMsi": 100 }