From c2ee139973caa6a912a4d6d255ecc4354315eec2 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 15 Apr 2013 14:41:57 -0700 Subject: [PATCH] Don't install test dependencies --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e82e8d71f..f04a8970c 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,6 @@ format: test: @go list -f '{{range .TestImports}}{{.}}\ {{end}}' ./... | xargs -n1 go get -d - @go test -i ./... - go test ./... + go test ./... 2>/dev/null .PHONY: all format test