From 44fa06ae363039decb41eaf2166c683423369286 Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Thu, 20 Nov 2025 14:37:42 -0800 Subject: [PATCH] fix flaky test: `approval_matrix_covers_all_modes` (#7028) looks like it sometimes flake around 30. let's give it more time. --- codex-rs/.config/nextest.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/codex-rs/.config/nextest.toml b/codex-rs/.config/nextest.toml index 3ca7cfe50..f432af88e 100644 --- a/codex-rs/.config/nextest.toml +++ b/codex-rs/.config/nextest.toml @@ -7,3 +7,7 @@ slow-timeout = { period = "15s", terminate-after = 2 } # Do not add new tests here filter = 'test(rmcp_client) | test(humanlike_typing_1000_chars_appears_live_no_placeholder)' slow-timeout = { period = "1m", terminate-after = 4 } + +[[profile.default.overrides]] +filter = 'test(approval_matrix_covers_all_modes)' +slow-timeout = { period = "30s", terminate-after = 2 }