refactor: Skip MCP Memory leak integration test (#9358)

Update test_mcp_memory_leak.py
This commit is contained in:
Edwin Jose 2025-08-12 08:26:03 -04:00 committed by GitHub
commit 163dabdaf3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,7 +17,10 @@ from langflow.base.mcp.util import MCPSessionManager
from loguru import logger
from mcp import StdioServerParameters
pytestmark = pytest.mark.timeout(300, method="thread")
pytestmark = [
pytest.mark.timeout(300, method="thread"),
pytest.mark.skip(reason="Skipping all MCP memory leak integration tests for now."),
]
async def wait_tools(session, t=20):