4 lines
96 B
Makefile
4 lines
96 B
Makefile
|
PKG_LIST := $(shell go list ./... | grep -v /vendor/)
|
||
|
|
||
|
test:
|
||
|
@go test -short -cover ${PKG_LIST}
|