From 1fec441dbc41cecacdd0dd5de1616ab3ed78541e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Matczuk?= Date: Thu, 24 May 2018 14:15:27 +0200 Subject: [PATCH] makefile: synchronise testing of packages Packages are tested in parallel by default, as we have integration tests in root package and migrate it fails sometimes. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9395773..41b3c8e 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,9 @@ check: .check-fmt .check-vet .check-lint .check-ineffassign .check-mega .check-m .PHONY: test test: - @go test -cover -race -tags all ./... + @go test -cover -race -tags all . + @go test -cover -race -tags all ./migrate + @go test -cover -race -tags all ./qb .PHONY: bench bench: