build: rase test timeout back to 10 mins

This commit is contained in:
Péter Szilágyi 2020-05-05 13:16:05 +03:00
parent c989bca173
commit 09169367de
No known key found for this signature in database
GPG key ID: E9AE538CEDF8293D

View file

@ -325,7 +325,7 @@ func doTest(cmdline []string) {
// Test a single package at a time. CI builders are slow
// and some tests run into timeouts under load.
gotest := goTool("test", buildFlags(env)...)
gotest.Args = append(gotest.Args, "-p", "1", "-timeout", "5m")
gotest.Args = append(gotest.Args, "-p", "1")
if *coverage {
gotest.Args = append(gotest.Args, "-covermode=atomic", "-cover")
}