refactor: Skip MCP Memory leak integration test (#9358)
Update test_mcp_memory_leak.py
This commit is contained in:
parent
515786c888
commit
163dabdaf3
1 changed files with 4 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue