feat(audit): add CoV flagging with --max-cov threshold#693
Draft
kaihowl wants to merge 1 commit into
Draft
Conversation
Adds Coefficient of Variation (CoV = σ/μ × 100%) flagging to the audit command. When tail or head CoV exceeds the configured threshold, a⚠️ High CoV warning is appended to the audit output to indicate low measurement stability that may affect z-score reliability. Configuration: - CLI: --max-cov <percentage> - Config: max_cov = 50.0 under [measurement] or per-measurement table - Precedence: CLI > per-measurement config > global config > no flagging Closes #326 https://claude.ai/code/session_01RN3hLyQDXCQVLBGC3XcYCM
Contributor
Performance ReportAudit ResultsMeasurement Storage SizeCreated by git-perf |
Contributor
🧬 PR Mutation Testing ResultsStatus: ❌ Missed mutants detected - tests need improvement Mutation Testing Metrics (Changed Code Only)
Mutation Score: 46.1% (12/26 viable mutants caught)
|
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
--max-cov <percentage>CLI flag togit perf auditto flag measurements with high Coefficient of Variation (CoV = σ/μ × 100%)⚠️ High CoV: tail=X.X%, head=Y.Y% (threshold: Z.Z%)warning is appended to the audit output.gitperfconfigasmax_covunder[measurement]or per-measurement tables, with standard CLI > config precedenceCloses #326
Test plan
cargo nextest run -- --skip slow --skip test_remove— 382/382 passcargo clippy— cleancargo fmt— applied./scripts/generate-manpages.shhttps://claude.ai/code/session_01RN3hLyQDXCQVLBGC3XcYCM
Generated by Claude Code