From 47ebd0789c511a51d28a46961388a69cdb0f36ae Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 16 Jan 2017 17:54:18 +0000 Subject: [PATCH] Make "make quicktest" ignore a config file if present for local running This means "make quicktest" should give the same result as when run by Travis. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0264b4936..62c53f7c2 100644 --- a/Makefile +++ b/Makefile @@ -28,8 +28,8 @@ test: rclone # Quick test quicktest: - go test $(GO_FILES) - go test -cpu=2 -race $(GO_FILES) + RCLONE_CONFIG="/notfound" go test $(GO_FILES) + RCLONE_CONFIG="/notfound" go test -cpu=2 -race $(GO_FILES) # Do source code quality checks check: rclone