From a09fba9d4394568ec10ca234796ed9fbaecc4f5a Mon Sep 17 00:00:00 2001 From: Marius van der Wijden Date: Thu, 5 Sep 2024 09:57:14 +0200 Subject: [PATCH] build: increase go test timeout --- build/ci.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ci.go b/build/ci.go index db57633704..abd64ef2f7 100644 --- a/build/ci.go +++ b/build/ci.go @@ -298,7 +298,7 @@ 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=20m") + gotest.Args = append(gotest.Args, "-timeout=30m") // Enable CKZG backend in CI. gotest.Args = append(gotest.Args, "-tags=ckzg")