Stabilize Bazel test timing under load

This commit is contained in:
Joe Gershenson
2026-04-15 10:28:05 -07:00
parent a04370f703
commit c7d99c63cf
2 changed files with 2 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ codex_rust_crate(
integration_test_tags_extra_by_stem = {
"all": ["flaky"],
},
integration_test_args = ["--test-threads=4"],
integration_test_timeout = "long",
test_tags = ["no-sandbox"],
)

View File

@@ -182,7 +182,7 @@ async fn wait_for_redirected_envelope_in_history(
thread: &Arc<CodexThread>,
expected: &InterAgentCommunication,
) {
timeout(Duration::from_secs(5), async {
timeout(Duration::from_secs(30), async {
loop {
let history_items = thread
.codex