Skip to main content
Glama
conftest.py2.51 kB
import os import sys import types from pathlib import Path SERVER_ROOT = Path(__file__).resolve().parents[2] if str(SERVER_ROOT) not in sys.path: sys.path.insert(0, str(SERVER_ROOT)) # Ensure telemetry is disabled during test collection and execution to avoid # any background network or thread startup that could slow or block pytest. os.environ.setdefault("DISABLE_TELEMETRY", "true") os.environ.setdefault("UNITY_MCP_DISABLE_TELEMETRY", "true") os.environ.setdefault("MCP_DISABLE_TELEMETRY", "true") # NOTE: These tests are integration tests for the MCP server Python code. # They test tools, resources, and utilities without requiring Unity to be running. # Tests can now import directly from the parent package since they're inside src/ # To run: cd Server && uv run pytest tests/integration/ -v # Stub telemetry modules to avoid file I/O during import of tools package telemetry = types.ModuleType("telemetry") def _noop(*args, **kwargs): pass class MilestoneType: pass telemetry.record_resource_usage = _noop telemetry.record_tool_usage = _noop telemetry.record_milestone = _noop telemetry.MilestoneType = MilestoneType telemetry.get_package_version = lambda: "0.0.0" sys.modules.setdefault("telemetry", telemetry) telemetry_decorator = types.ModuleType("telemetry_decorator") def _noop_decorator(*_dargs, **_dkwargs): def _wrap(fn): return fn return _wrap telemetry_decorator.telemetry_tool = _noop_decorator telemetry_decorator.telemetry_resource = _noop_decorator sys.modules.setdefault("telemetry_decorator", telemetry_decorator) # Stub fastmcp module (not mcp.server.fastmcp) fastmcp = types.ModuleType("fastmcp") class _DummyFastMCP: pass class _DummyContext: pass class _DummyMiddleware: """Base middleware class stub.""" pass class _DummyMiddlewareContext: """Middleware context stub.""" pass fastmcp.FastMCP = _DummyFastMCP fastmcp.Context = _DummyContext sys.modules.setdefault("fastmcp", fastmcp) # Stub fastmcp.server.middleware submodule fastmcp_server = types.ModuleType("fastmcp.server") fastmcp_server_middleware = types.ModuleType("fastmcp.server.middleware") fastmcp_server_middleware.Middleware = _DummyMiddleware fastmcp_server_middleware.MiddlewareContext = _DummyMiddlewareContext fastmcp.server = fastmcp_server fastmcp_server.middleware = fastmcp_server_middleware sys.modules.setdefault("fastmcp.server", fastmcp_server) sys.modules.setdefault("fastmcp.server.middleware", fastmcp_server_middleware)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CoplayDev/unity-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server