From 3f393b65fbdf7852b717b3df9f77b56e515b0da2 Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Fri, 6 Mar 2026 18:45:46 -0800 Subject: [PATCH] codex: fix flaky shell serialization timeout (#13593) --- codex-rs/core/tests/suite/shell_serialization.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/codex-rs/core/tests/suite/shell_serialization.rs b/codex-rs/core/tests/suite/shell_serialization.rs index 3e5942da6a..e2a2444479 100644 --- a/codex-rs/core/tests/suite/shell_serialization.rs +++ b/codex-rs/core/tests/suite/shell_serialization.rs @@ -740,6 +740,7 @@ async fn shell_command_output_is_freeform() -> Result<()> { let call_id = "shell-command"; let args = json!({ "command": "echo shell command", + "login": false, "timeout_ms": 1_000, }); let responses = vec![ @@ -791,6 +792,7 @@ async fn shell_command_output_is_not_truncated_under_10k_bytes() -> Result<()> { let call_id = "shell-command"; let args = json!({ "command": "perl -e 'print \"1\" x 10000'", + "login": false, "timeout_ms": 1000, }); let responses = vec![ @@ -841,6 +843,7 @@ async fn shell_command_output_is_not_truncated_over_10k_bytes() -> Result<()> { let call_id = "shell-command"; let args = json!({ "command": "perl -e 'print \"1\" x 10001'", + "login": false, "timeout_ms": 1000, }); let responses = vec![