fix: Exclude mcp_server directory from root project pytest discovery

- 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 <noreply@anthropic.com>
This commit is contained in:
Daniel Chalef 2025-08-25 21:19:37 -07:00
parent 54c2c5e9d6
commit d20340701f

View file

@ -65,6 +65,7 @@ build-backend = "hatchling.build"
[tool.pytest.ini_options]
pythonpath = ["."]
norecursedirs = ["mcp_server"]
[tool.ruff]
line-length = 100