Skip to content

Commit

Permalink
makefile: added reflectx tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatczuk committed May 25, 2018
1 parent daad194 commit e8ffe4a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e8ffe4a

Please sign in to comment.