test_all: increase the test timeout to 60m from 30m

Some tests are failing at 30m - 60m doesn't seem unreasonable
This commit is contained in:
Nick Craig-Wood 2020-05-07 20:38:40 +01:00
parent 9403bd2990
commit 94920d39ae
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ var (
testTests = flag.String("tests", "", "Comma separated list of tests to test, eg 'fs/sync,fs/operations'")
clean = flag.Bool("clean", false, "Instead of testing, clean all left over test directories")
runOnly = flag.String("run", "", "Run only those tests matching the regexp supplied")
timeout = flag.Duration("timeout", 30*time.Minute, "Maximum time to run each test for before giving up")
timeout = flag.Duration("timeout", 60*time.Minute, "Maximum time to run each test for before giving up")
configFile = flag.String("config", "fstest/test_all/config.yaml", "Path to config file")
outputDir = flag.String("output", path.Join(os.TempDir(), "rclone-integration-tests"), "Place to store results")
emailReport = flag.String("email", "", "Set to email the report to the address supplied")