From 11e841e5992d6ffd5b59ed8219bce50bddbfdbb6 Mon Sep 17 00:00:00 2001 From: Sina M <1591639+s1na@users.noreply.github.com> Date: Thu, 30 Jan 2025 10:58:44 +0100 Subject: [PATCH] build: bump test timeout (#31095) Travis often fails because the test times out. --- build/ci.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/ci.go b/build/ci.go index fd51b90d17..4a83fb9a88 100644 --- a/build/ci.go +++ b/build/ci.go @@ -298,8 +298,8 @@ func doTest(cmdline []string) { } gotest := tc.Go("test") - // CI needs a bit more time for the statetests (default 10m). - gotest.Args = append(gotest.Args, "-timeout=30m") + // CI needs a bit more time for the statetests (default 45m). + gotest.Args = append(gotest.Args, "-timeout=45m") // Enable CKZG backend in CI. gotest.Args = append(gotest.Args, "-tags=ckzg")