Test with custom timeout.
()
| 83 | |
| 84 | @pytest.mark.asyncio |
| 85 | async def test_execute_tools_parallel_with_timeout(): |
| 86 | """Test with custom timeout.""" |
| 87 | manager = MockToolManager() |
| 88 | calls = [CTPToolCall(id="call_1", tool="test_tool", arguments={})] |
| 89 | |
| 90 | results = await execute_tools_parallel(manager, calls, timeout=60.0) |
| 91 | |
| 92 | assert len(results) == 1 |
| 93 | assert results[0].is_success |
| 94 | |
| 95 | |
| 96 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected