bump gate timeout from 600s to 1200s

Merge worktree cold-compiles the BFT CRDT crate + all deps which
exceeds 600s. 1200s gives enough headroom.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
dave
2026-04-07 15:47:44 +00:00
parent c7cf1e8335
commit 7eecfeb56a
+1 -1
View File
@@ -4,7 +4,7 @@ use std::time::Duration;
use wait_timeout::ChildExt; use wait_timeout::ChildExt;
/// Maximum time any single test command is allowed to run before being killed. /// Maximum time any single test command is allowed to run before being killed.
const TEST_TIMEOUT: Duration = Duration::from_secs(600); // 10 minutes const TEST_TIMEOUT: Duration = Duration::from_secs(1200); // 20 minutes
/// Detect whether the base branch in a worktree is `master` or `main`. /// Detect whether the base branch in a worktree is `master` or `main`.
/// Falls back to `"master"` if neither is found. /// Falls back to `"master"` if neither is found.