feat(mutation): operator parallelism, multi-format reports, and history tracking#75
Merged
Conversation
…ed by OperatorConcurrency
Add TestWriteReport_AllKeyword to verify the "all" shorthand.
…eport formats early
…ort default case, fix ↓ delta sign
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
engine.gonow runs operators concurrently, each with its own proxy instance. Bounded by--operator-concurrency(default 2); inner--concurrencystill controls per-operator case parallelism.--report-format json,markdown,html,allflag writes multi-format reports.RenderMarkdownproduces a survivor risk table;RenderHTMLproduces a self-contained heatmap (inline CSS, no external deps)."all"expands to all three.--historyprints a trend table of past runs from.caseforge/mutation/runs/including delta (↑/↓/—) and 7-day average score.--targetand--casesare not required when using--history.New flags
--operator-concurrency--report-formatjsonjson,markdown,html,all--history--history-limitTest Plan
go test ./... -count=1— all packages pass./scripts/acceptance.sh— 265/265 pass (AT-404 through AT-409 are new)go vet ./...— clean--report-format jsn(typo) fails immediately with clear error before any mutation run--historyworks without--targetor--casesLoadHistorylimit applied after JSON filter (non-JSON files don't consume limit slots)