From aa58f668066d02381248d8af0b0128fc40dde3a5 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sun, 14 Oct 2018 14:16:33 +0100 Subject: [PATCH] build: add longer timeout to integration tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2c7ab2c72..8d6ab96fd 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ version: # Full suite of integration tests test: rclone go install github.com/ncw/rclone/fstest/test_all - -go test -v -count 1 $(BUILDTAGS) $(GO_FILES) 2>&1 | tee test.log + -go test -v -count 1 -timeout 20m $(BUILDTAGS) $(GO_FILES) 2>&1 | tee test.log -test_all github.com/ncw/rclone/fs/operations github.com/ncw/rclone/fs/sync 2>&1 | tee fs/test_all.log @echo "Written logs in test.log and fs/test_all.log"