fix: mutation test threshold should be in config
Some checks failed
CI / Makefile Lint (pull_request) Successful in 16s
CI / Go Lint (pull_request) Successful in 20s
CI / Unit Tests (pull_request) Successful in 15s
CI / Fuzz Tests (pull_request) Successful in 47s
CI / Mutation Tests (pull_request) Failing after 40s

There isn't a `--threshold` flag for `go-gremlins`.
This commit is contained in:
2026-03-19 21:23:16 -04:00
parent afd3472d1d
commit cd115ba7a2
2 changed files with 4 additions and 2 deletions

View File

@@ -5,3 +5,5 @@ unleash:
workers: 4
dry-run: false
threshold:
efficacy: 100

View File

@@ -14,7 +14,7 @@ test-unit: ## Run unit tests with coverage
go test ./... -cover -v
test-mutation: ## Run mutation tests with gremlins
gremlins unleash --threshold 1.0
gremlins unleash
FUZZ_TIME ?= 30