From f3c80047b9e8eea879e963048c1ff59c6c3f843c Mon Sep 17 00:00:00 2001 From: UlisseMini Date: Fri, 25 Jan 2019 12:46:37 -0500 Subject: [PATCH] Makefile: Use go test ./... to test all packages. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b32fa1a..8b0a74f 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ debug: $(BINARY) $(KEY) ./$(BINARY) --pprof 6060 -i $(KEY) --bind ":$(PORT)" -vv test: - go test -v $(SUBPACKAGES) + go test ./... release: GOOS=linux GOARCH=arm GOARM=6 $(LDFLAGS) ./build_release "github.com/shazow/ssh-chat/cmd/ssh-chat" README.md LICENSE