From afd3472d1d95d707520888680643c3d97b14b22e Mon Sep 17 00:00:00 2001 From: "M.V. Hutz" Date: Thu, 19 Mar 2026 21:20:18 -0400 Subject: [PATCH] ci: enforce 100% mutation coverage This will strongly indicate whether the test cases actually cover. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2ea9847..54c38ee 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ test-unit: ## Run unit tests with coverage go test ./... -cover -v test-mutation: ## Run mutation tests with gremlins - gremlins unleash + gremlins unleash --threshold 1.0 FUZZ_TIME ?= 30