feat(RMGR-WP-0008): add workplan and register receiving surfaces

This commit is contained in:
tegwick 2026-08-21 17:15:21 +02:00
parent 5502afc1fd
commit 859df9aae7
15 changed files with 1501 additions and 11 deletions

View file

@ -55,11 +55,11 @@ def _clear_dual_run_cache():
dual_run.reload_config()
def test_flags_and_pilot(monkeypatch: pytest.MonkeyPatch):
def test_flags_and_pilot(tmp_path: Path, monkeypatch: pytest.MonkeyPatch):
monkeypatch.delenv("RM_WRITEBACK", raising=False)
monkeypatch.delenv("RM_RECONCILE", raising=False)
monkeypatch.delenv("RM_PILOT_REPOS", raising=False)
monkeypatch.delenv("RM_DUAL_RUN_CONFIG", raising=False)
monkeypatch.setenv("RM_DUAL_RUN_CONFIG", str(tmp_path / "missing-dual-run.yaml"))
dual_run.reload_config()
assert dual_run.writeback_enabled() is False