From e8ffe4afe965d5de8f03d2e9cef47ea0954addac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Matczuk?= Date: Fri, 25 May 2018 11:02:52 +0200 Subject: [PATCH] makefile: added reflectx tests --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 41b3c8e..1f91bb4 100644 --- a/Makefile +++ b/Makefile @@ -27,11 +27,14 @@ check: .check-fmt .check-vet .check-lint .check-ineffassign .check-mega .check-m .check-misspell: @misspell ./... +GOTEST := go test -cover -race -tags all + .PHONY: test test: - @go test -cover -race -tags all . - @go test -cover -race -tags all ./migrate - @go test -cover -race -tags all ./qb + @$(GOTEST) . + @$(GOTEST) ./migrate + @$(GOTEST) ./qb + @$(GOTEST) ./reflectx .PHONY: bench bench: