From 4c97eeb32a776a323f840f168ef96c2ad12b3178 Mon Sep 17 00:00:00 2001 From: jif-oai Date: Thu, 18 Sep 2025 10:43:45 +0100 Subject: [PATCH] bug: Ignore tests for now (#3777) Ignore flaky / long tests for now --- codex-rs/core/src/unified_exec/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/codex-rs/core/src/unified_exec/mod.rs b/codex-rs/core/src/unified_exec/mod.rs index 99b19796b..8b81345d4 100644 --- a/codex-rs/core/src/unified_exec/mod.rs +++ b/codex-rs/core/src/unified_exec/mod.rs @@ -557,6 +557,7 @@ mod tests { #[cfg(unix)] #[tokio::test] + #[ignore] // Ignored while we have a better way to test this. async fn requests_with_large_timeout_are_capped() -> Result<(), UnifiedExecError> { let manager = UnifiedExecSessionManager::default(); @@ -578,6 +579,7 @@ mod tests { #[cfg(unix)] #[tokio::test] + #[ignore] // Ignored while we have a better way to test this. async fn completed_commands_do_not_persist_sessions() -> Result<(), UnifiedExecError> { let manager = UnifiedExecSessionManager::default(); let result = manager