From f4863e61ee175d1bd99e396cf5e787a80dea28f1 Mon Sep 17 00:00:00 2001 From: Phil Calvin Date: Sat, 11 Apr 2026 04:44:23 +0000 Subject: [PATCH] Extend cloud-init polling deadline to 600s MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 300s is too tight for macOS TCG on GitHub runners — cloud-init was still installing packages when the deadline expired. The job-level timeout (20min) is the real safety net. Co-Authored-By: Claude Opus 4.6 --- tests/test_e2e.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_e2e.py b/tests/test_e2e.py index 869945e..97bb6f3 100644 --- a/tests/test_e2e.py +++ b/tests/test_e2e.py @@ -237,7 +237,7 @@ def test_cloud_init_success(running_vm): SSH subprocess open during the entire cloud-init run (which includes package installation and can take several minutes in TCG mode). """ - deadline = time.monotonic() + 300 + deadline = time.monotonic() + 600 last_detail = "" while time.monotonic() < deadline: try: