From 3e8535793493b49a1bf57c0beab4c3b7d2e525b9 Mon Sep 17 00:00:00 2001 From: Matthias Loibl Date: Mon, 22 Jul 2019 18:03:27 +0200 Subject: [PATCH] Actually run go test on packages --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c59e8a8..451331a 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ install: build test: @echo ">> running all unit tests" - @go test $(PKGS) + go test -v $(PKGS) test-integration: @echo ">> running all integration tests"