test(parity): ratchet the matrix-trend baseline over the #8271 dark debt - #8461
Merged
Conversation
added 2 commits
August 20, 2026 08:32
The #8271 six-week dark-debt triage ratcheted known_failures.json (#8273) and the threshold floors (#8304) but missed the third gate the aggregate runs: scripts/parity_matrix_trend.py against parity_matrix_baseline.json. That per-test check ignores known_failures listing (its 'known' exemption only covers the unlisted-failure problem class), so parity-aggregate kept failing on 20 already-triaged test_parity_* modules — red in full-tier run 32298711372 and every recent full run, blocking full-suite-gate and with it every release. Ratchet the 20 measured entries (status + max_diff_lines from the 32298711372 merged report), each citing #8271. Entries are ceilings, not suppressions: the underlying npm-package family regressions stay tracked in #8271 (nanoid dies mid-run with a rooting-bug-shaped TypeError, date_fns format() substitutes only MM, stream_web crashes), and fixing a module tightens its row back. Validated: check_records() over the run's exact measured records returns zero problems with this baseline.
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
proggeramlug
marked this pull request as ready for review
August 20, 2026 08:47
This was referenced Aug 20, 2026
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.
Part of the release-blocker set (#8271): parity-aggregate has been red in every recent full-tier run — including 32298711372 — on 20
test_parity_<module>rows that the #8271 dark-debt triage already listed inknown_failures.json(#8273) and in the threshold floors (#8304), but that still fail the aggregate's THIRD gate:scripts/parity_matrix_trend.pyvstest-parity/parity_matrix_baseline.json(untouched since #4439).check_records()deliberately ignores known_failures listing for its allowed-status / diff-lines checks, so triaged debt still redsfull-suite-gate— and the release waits on that gate.This ratchets the 20 measured entries (status +
max_diff_linesfrom run 32298711372's merged report), each citing #8271:parity_fail(cluster, commander, cron, crypto, date_fns, dayjs, decimal, dotenv, lodash, lru_cache, moment, nanoid, uuid, validator, util)stream_webatcrashEntries are ceilings, not suppressions — the product regressions stay tracked in #8271 (nanoid dies mid-run with a rooting-bug-shaped
TypeError: value is not a function; date_fnsformat()substitutes onlyMMout ofyyyy-MM-dd), and a fixed module tightens its row back on the next ratchet.Validated:
check_records()over the run's exact measured records returns zero problems with this baseline (was 20+). Known residual risk:max_diff_linesvalues are pinned to one run's measurement; if a diff count flakes upward between runs the row will red again and should be bumped with a fresh measurement, not padded speculatively.