build: bump test timeout (#31095)

Travis often fails because the test times out.
This commit is contained in:
Sina M 2025-01-30 10:58:44 +01:00 committed by GitHub
parent 52766bedb9
commit 11e841e599
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -298,8 +298,8 @@ func doTest(cmdline []string) {
} }
gotest := tc.Go("test") gotest := tc.Go("test")
// CI needs a bit more time for the statetests (default 10m). // CI needs a bit more time for the statetests (default 45m).
gotest.Args = append(gotest.Args, "-timeout=30m") gotest.Args = append(gotest.Args, "-timeout=45m")
// Enable CKZG backend in CI. // Enable CKZG backend in CI.
gotest.Args = append(gotest.Args, "-tags=ckzg") gotest.Args = append(gotest.Args, "-tags=ckzg")