From 98be0de919f968d0dd456b8040bdc6c95a025fe7 Mon Sep 17 00:00:00 2001 From: chengyongru <2755839590@qq.com> Date: Sat, 30 May 2026 01:01:26 +0800 Subject: [PATCH] fix(test): increase yield_time_ms in test_write_stdin_can_close_stdin for Windows CI stability --- tests/tools/test_exec_session_tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tools/test_exec_session_tools.py b/tests/tools/test_exec_session_tools.py index f5fe45e96..2c99a2c3b 100644 --- a/tests/tools/test_exec_session_tools.py +++ b/tests/tools/test_exec_session_tools.py @@ -159,13 +159,13 @@ def test_write_stdin_can_close_stdin(tmp_path): "data=sys.stdin.read(); print('got:' + data, flush=True)" ) - initial = await exec_tool.execute(command=command, yield_time_ms=500) + initial = await exec_tool.execute(command=command, yield_time_ms=1500) sid = _session_id(initial) result = await stdin_tool.execute( session_id=sid, chars="payload", close_stdin=True, - yield_time_ms=1000, + yield_time_ms=1500, ) return initial, result