From d968402cd5a533604b6b4c57332f083cce6bcad7 Mon Sep 17 00:00:00 2001 From: Morgan Jones Date: Tue, 30 Jul 2024 16:49:58 -0700 Subject: [PATCH] tests/armagetronad: increase timeout for busy Hydra server --- nixos/tests/armagetronad.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/armagetronad.nix b/nixos/tests/armagetronad.nix index 0fe197860a54..b657893fc9ee 100644 --- a/nixos/tests/armagetronad.nix +++ b/nixos/tests/armagetronad.nix @@ -208,7 +208,7 @@ makeTest { barrier.wait() # Get to the Server Bookmarks screen on both clients. This takes a while so do it asynchronously. - barrier = threading.Barrier(3, timeout=120) + barrier = threading.Barrier(len(clients) + 1, timeout=240) for client in clients: threading.Thread(target=client_setup, args=(client, servers, barrier)).start() barrier.wait()