From 6bff3aaa19947f04fbdcacbf91dd46855984c58a Mon Sep 17 00:00:00 2001 From: Ben Challis Date: Sat, 18 Feb 2023 12:59:43 +0000 Subject: [PATCH] Re-enable Infection in CI without --only-covering-test-cases (#439) --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 33b36dee..6b364de1 100644 --- a/composer.json +++ b/composer.json @@ -84,13 +84,14 @@ "phpunit --colors --testsuite=unit --do-not-cache-result" ], "infection": [ - "./bin/infection --threads=8 --only-covering-test-cases --min-msi=99 --show-mutations" + "./bin/infection --threads=8 --min-msi=99 --show-mutations" ], "tests": [ "@tests:unit" ], "tests:unit": [ - "@phpunit:unit" + "@phpunit:unit", + "@infection" ], "ci": [ "@composer audit",