From 35ea3ae13f563e832ab1fe9d7f7bcdacf4e3827a Mon Sep 17 00:00:00 2001 From: davidovich Date: Wed, 10 Jul 2019 17:50:07 -0400 Subject: [PATCH] remove -i flag of go test that disables tests from go help test: -i Install packages that are dependencies of the test. Do not run the test. This patch simply removes the -i. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index face73e..35bdfcd 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ install: build test: @echo ">> running all tests" - @go test -i $(PKGS) + @go test $(PKGS) generate: embedmd @echo ">> generating docs"