From b2f4cfb4bd5b0de497a9eb66f5d45350732d09c6 Mon Sep 17 00:00:00 2001 From: Chris Christiansen Date: Mon, 21 Sep 2026 08:59:03 +0000 Subject: [PATCH] test(opax-mcp): add Emma import bootstrap to auth tests --- opax-mcp/test_auth.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/opax-mcp/test_auth.py b/opax-mcp/test_auth.py index f97d480..7b823b9 100644 --- a/opax-mcp/test_auth.py +++ b/opax-mcp/test_auth.py @@ -8,6 +8,10 @@ from unittest.mock import AsyncMock, patch REPO_ROOT = Path(__file__).resolve().parents[1] sys.path.insert(0, str(REPO_ROOT / "opax-mcp")) +EMMA_DIR = REPO_ROOT / "emma" +if str(EMMA_DIR) not in sys.path: + sys.path.insert(0, str(EMMA_DIR)) + import server