From 2974efc7d6ff5ff1a6e10d2e4cc787815a74b831 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Fri, 2 Feb 2018 09:37:00 +0000 Subject: [PATCH] Makefile: disable caching in integration tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0373a2bb0..324e72190 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ version: # Full suite of integration tests test: rclone go install github.com/ncw/rclone/fstest/test_all - -go test $(BUILDTAGS) $(GO_FILES) 2>&1 | tee test.log + -go test -count 1 $(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"