9 lines
332 B
Python
9 lines
332 B
Python
import os
|
|
|
|
# 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")
|
|
|