8 lines
331 B
Python
8 lines
331 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")
|