Makefile: disable caching in integration tests

This commit is contained in:
Nick Craig-Wood 2018-02-02 09:37:00 +00:00
parent a6227f34e2
commit 2974efc7d6
1 changed files with 1 additions and 1 deletions

View File

@ -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"