From 9b39349aeba0664b6f49e63298035786f069bbf4 Mon Sep 17 00:00:00 2001 From: David Zhao Date: Thu, 3 Jun 2021 22:40:20 -0700 Subject: [PATCH] increase timeout for GH CI --- magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefile.go b/magefile.go index b0b6739ad..4658d4d58 100644 --- a/magefile.go +++ b/magefile.go @@ -213,7 +213,7 @@ func Test() error { // run all tests including integration func TestAll() error { mg.Deps(Proto) - cmd := exec.Command("go", "test", "./...", "-count=1", "-timeout=1m") + cmd := exec.Command("go", "test", "./...", "-count=1", "-timeout=5m") connectStd(cmd) return cmd.Run() }