forked from TrueCloudLab/rclone
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:
parent
9403bd2990
commit
94920d39ae
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ var (
|
||||||
testTests = flag.String("tests", "", "Comma separated list of tests to test, eg 'fs/sync,fs/operations'")
|
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")
|
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")
|
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")
|
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")
|
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")
|
emailReport = flag.String("email", "", "Set to email the report to the address supplied")
|
||||||
|
|
Loading…
Add table
Reference in a new issue