From 94920d39ae14bf39e683ba61d757bf524d7bd23f Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Thu, 7 May 2020 20:38:40 +0100 Subject: [PATCH] test_all: increase the test timeout to 60m from 30m Some tests are failing at 30m - 60m doesn't seem unreasonable --- fstest/test_all/test_all.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fstest/test_all/test_all.go b/fstest/test_all/test_all.go index 7f9644458..a298cc100 100644 --- a/fstest/test_all/test_all.go +++ b/fstest/test_all/test_all.go @@ -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")