From 1df03d834677065a60c45bb29571942027fb00b7 Mon Sep 17 00:00:00 2001 From: Fabian Reinartz Date: Thu, 27 Apr 2017 17:27:19 +0200 Subject: [PATCH] make: disable remote tests temporarily --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1247bd1f0a..a07f67efe5 100644 --- a/Makefile +++ b/Makefile @@ -39,11 +39,11 @@ check_license: # TODO(fabxc): example tests temporarily removed. test-short: @echo ">> running short tests" - @$(GO) test $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) + @$(GO) test -short $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) test: @echo ">> running all tests" - @$(GO) test $(pkgs) + @$(GO) test $(shell $(GO) list ./... | grep -v /vendor/ | grep -v examples) format: @echo ">> formatting code"