From 9849a98b6bf1a2b20774becd7821733aa9f3736f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 20 Apr 2013 18:17:44 -0600 Subject: [PATCH] Show the stderr for when test builds fail --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f04a8970c..e54aa8cb6 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,6 @@ format: test: @go list -f '{{range .TestImports}}{{.}}\ {{end}}' ./... | xargs -n1 go get -d - go test ./... 2>/dev/null + go test ./... .PHONY: all format test