Add date-isolated caches and regression coverage, align scoring identity, and freeze full research reruns while preserving historical artifacts. Record unresolved cache/receipt identity and end-to-end acceptance gaps for branch review only. Co-Authored-By: Claude Code <noreply@anthropic.com>
20 lines
1.0 KiB
Python
20 lines
1.0 KiB
Python
"""Collect research integrity regressions in the existing rectification quick gate."""
|
|
|
|
from tests.test_reported_offset_research import ( # noqa: F401
|
|
test_cross_midnight_real_engine_scores_match_candidate_date_replay,
|
|
test_offset_beyond_radius_has_no_truth_candidate,
|
|
test_opaque_tie_break_is_independent_of_truth_and_input_order,
|
|
test_recorded_specification_and_all_prespecified_cells,
|
|
test_shifted_window_preserves_dates_across_midnight,
|
|
test_zero_offset_centres_on_truth_and_has_complete_grid,
|
|
test_sweep_changed_frozen_identity_fails_before_scoring,
|
|
)
|
|
from tests.test_sealed_holdout_contract_freshness import ( # noqa: F401
|
|
test_changed_frozen_identity_fails_before_any_replay,
|
|
test_contract_tracks_actual_current_scorer_and_dataset_audit,
|
|
test_fixed_protocol_rerun_is_auditable_but_never_independent_blind,
|
|
test_frozen_record_matches_dataset_scorer_and_evaluator_bytes,
|
|
test_extended_identity_drift_rejected_even_when_legacy_hash_unchanged,
|
|
test_historical_artifacts_are_byte_preserved_not_refreshed,
|
|
)
|