F [100%] =================================== FAILURES =================================== __________ test_coordinator_initializes_customer_service_state_store ___________ tmp_path = PosixPath('/tmp/pytest-of-cube/pytest-0/test_coordinator_initializes_c0') def test_coordinator_initializes_customer_service_state_store( tmp_path: Path, ) -> None: module = _module() registry = _registry(tmp_path) state_path = ( tmp_path / "data" / "owner-actions" / "customer-service-state.json" ) state_path.unlink() coordinator = module.NutritionCoachingCoordinator( tmp_path, registry, kst_date_provider=lambda: date(2026, 7, 2), ) address = module.IncomingAddress( "client", "customer-chat", "customer-topic", ) > assert state_path.exists() is True E AssertionError: assert False is True E + where False = exists() E + where exists = PosixPath('/tmp/pytest-of-cube/pytest-0/test_coordinator_initializes_c0/data/owner-actions/customer-service-state.json').exists tests/gateway/test_nutrition_coaching.py:1278: AssertionError =========================== short test summary info ============================ FAILED tests/gateway/test_nutrition_coaching.py::test_coordinator_initializes_customer_service_state_store 1 failed in 0.39s