From d20340701f52350f1dbd5ff5a07ad86df5f98834 Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Mon, 25 Aug 2025 21:19:37 -0700 Subject: [PATCH] fix: Exclude mcp_server directory from root project pytest discovery MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Added norecursedirs = ["mcp_server"] to pytest configuration - Prevents pytest from recursively discovering tests in mcp_server when running from root - mcp_server has its own dedicated test suite and GitHub Actions workflow 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 908e0d92..4f247627 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,6 +65,7 @@ build-backend = "hatchling.build" [tool.pytest.ini_options] pythonpath = ["."] +norecursedirs = ["mcp_server"] [tool.ruff] line-length = 100