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.
This commit is contained in:
Michał Matczuk
2018-05-24 14:15:27 +02:00
parent 512f8f1e25
commit 1fec441dbc

View File

@@ -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: