From cfc4dfbdded62f97b766c639f966356ddd3913ec Mon Sep 17 00:00:00 2001 From: Shay Date: Sat, 16 May 2026 20:21:41 -0700 Subject: [PATCH] chore(cli): include test_epistemic_invariants in teaching suite Registers tests/test_epistemic_invariants.py in the teaching CLI lane so `core test --suite teaching` sweeps the ADR-0021 non-hardening invariant checks alongside the reviewed-teaching loop and pipeline integration tests. Lane: 17/17. --- core/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/cli.py b/core/cli.py index 54f6a6a9..37a8679c 100644 --- a/core/cli.py +++ b/core/cli.py @@ -57,6 +57,7 @@ _TEST_SUITES: dict[str, tuple[str, ...]] = { "teaching": ( "tests/test_reviewed_teaching_loop.py", "tests/test_pipeline_teaching_integration.py", + "tests/test_epistemic_invariants.py", ), "packs": ( "tests/test_core_semantic_seed_pack.py",