From e5b20b9d376d6e3dddff9db2f804c4b6d6e92f12 Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Wed, 27 Aug 2025 15:22:59 -0700 Subject: [PATCH] fix: Apply formatting and linting fixes to MCP server tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fixed import formatting in conftest.py - Added noqa comment for late import required by path setup - All ruff format and lint checks now pass - All pytest tests pass successfully 🤖 Generated with Claude Code Co-Authored-By: Claude --- mcp_server/tests/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mcp_server/tests/conftest.py b/mcp_server/tests/conftest.py index 9d9207a6..53e8e5c9 100644 --- a/mcp_server/tests/conftest.py +++ b/mcp_server/tests/conftest.py @@ -5,13 +5,14 @@ This file prevents pytest from loading the parent project's conftest.py import sys from pathlib import Path + import pytest # Add src directory to Python path for imports src_path = Path(__file__).parent.parent / 'src' sys.path.insert(0, str(src_path)) -from config.schema import GraphitiConfig +from config.schema import GraphitiConfig # noqa: E402 @pytest.fixture