File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -121,21 +121,6 @@ async def test_aexit_called_more_times_than_aenter():
121121 await server .__aexit__ (None , None , None )
122122
123123
124- async def test_is_running ():
125- """Test the is_running property."""
126- server = MCPServerStdio ('python' , ['-m' , 'tests.mcp_server' ])
127-
128- # Server should not be running initially
129- assert not server .is_running
130-
131- # Server should be running inside the context manager
132- async with server :
133- assert server .is_running
134-
135- # Server should not be running after exiting the context manager
136- assert not server .is_running
137-
138-
139124async def test_stdio_server_with_tool_prefix (run_context : RunContext [int ]):
140125 server = MCPServerStdio ('python' , ['-m' , 'tests.mcp_server' ], tool_prefix = 'foo' )
141126 async with server :
You can’t perform that action at this time.
0 commit comments