From 5cf7c4118047b546021143cd40dc50fb80dbfeaa Mon Sep 17 00:00:00 2001 From: Shay Date: Sat, 16 May 2026 20:25:56 -0700 Subject: [PATCH] chore(cli): pull session-load-bearing tests into curated lanes The five files below were only swept by `--suite full`, leaving targeted lanes blind to regressions in their domain. Minimal fix: smoke += test_architectural_invariants cognition += test_deterministic_hash (trace_hash regression catch) algebra += test_vault_recall + test_vault_recall_vectorised (ADR-0019 bit-identity) + test_vault_recall_rust_parity (ADR-0020 first-surface) Lanes after: smoke 54, algebra 86 (was 70), cognition 57. --- core/cli.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/cli.py b/core/cli.py index 37a8679c..17d01369 100644 --- a/core/cli.py +++ b/core/cli.py @@ -40,6 +40,7 @@ _TEST_SUITES: dict[str, tuple[str, ...]] = { "tests/test_achat.py", "tests/test_runtime_config.py", "tests/test_cognitive_turn_pipeline.py", + "tests/test_architectural_invariants.py", ), "runtime": ( "tests/test_chat_runtime.py", @@ -53,6 +54,7 @@ _TEST_SUITES: dict[str, tuple[str, ...]] = { "tests/test_articulation_realizer_v2.py", "tests/test_semantic_realizer_integration.py", "tests/test_cognitive_eval_harness.py", + "tests/test_deterministic_hash.py", ), "teaching": ( "tests/test_reviewed_teaching_loop.py", @@ -69,6 +71,9 @@ _TEST_SUITES: dict[str, tuple[str, ...]] = { "tests/test_energy.py", "tests/test_motor.py", "tests/test_null_cone.py", + "tests/test_vault_recall.py", + "tests/test_vault_recall_vectorised.py", + "tests/test_vault_recall_rust_parity.py", ), "pulse": ( "tests/test_pulse_integration.py",