Skip to content

Commit

Permalink
build: increase go test timeout (ethereum#30398)
Browse files Browse the repository at this point in the history
This increases the timeout for the go tests on ci, this should prevent
travis from erroring.

see:
https://app.travis-ci.com/github/ethereum/go-ethereum/jobs/625803693
  • Loading branch information
MariusVanDerWijden authored Sep 5, 2024
1 parent c3f13b2 commit 23973bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,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")
Expand Down

0 comments on commit 23973bd

Please sign in to comment.