Replace machine-specific float hashes with strict score and matrix byte comparisons. Keep quick bridge coverage and document duplicate collection. Verify Windows/Linux float behavior and in-memory candidate-date reversal; record the separate-machine acceptance gap and BUG-984 end-to-end blocker. Co-Authored-By: Claude Code <noreply@anthropic.com>
15 lines
760 B
Python
15 lines
760 B
Python
"""Collect candidate-date regressions through quick's test_rectification_*.py glob.
|
|
|
|
The re-export deliberately keeps all nine cases inside the quick gate. If both
|
|
this bridge and the source file are selected (e.g. the full suite), pytest runs
|
|
them twice: eighteen collected items are nine independent cases, not eighteen.
|
|
"""
|
|
|
|
from tests.test_dasha_transition_proximity_cross_midnight import ( # noqa: F401
|
|
test_every_candidate_uses_own_date_and_caches_do_not_cross_dates,
|
|
test_fixed_scoring_identity_is_exposed_without_changing_input_contract,
|
|
test_legacy_context_without_candidate_at_retains_request_date,
|
|
test_real_cross_midnight_all_candidates_match_independent_dated_calculation,
|
|
test_same_day_public_aa_scores_keep_pre_fix_bytes,
|
|
)
|