Preserve closed confirmation gates and previously-exposed dataset boundaries. Add auditable 900-trial sensitivity results, current scorer freshness checks, and the v5 collection protocol. Co-Authored-By: Claude Code <noreply@anthropic.com>
17 lines
863 B
Python
17 lines
863 B
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,
|
|
)
|
|
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,
|
|
)
|