increase timeout for GH CI

This commit is contained in:
David Zhao
2021-06-03 22:40:20 -07:00
parent 24919d8ccb
commit 9b39349aeb
+1 -1
View File
@@ -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()
}