Exclude /ui folder from go tests
This commit is contained in:
parent
9ec25d84c5
commit
e2898f8f4d
2
Makefile
2
Makefile
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
GO := GO15VENDOREXPERIMENT=1 go
|
GO := GO15VENDOREXPERIMENT=1 go
|
||||||
PROMU := $(GOPATH)/bin/promu
|
PROMU := $(GOPATH)/bin/promu
|
||||||
pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
|
pkgs = $(shell $(GO) list ./... | grep -v -E '/vendor/|/ui')
|
||||||
|
|
||||||
PREFIX ?= $(shell pwd)
|
PREFIX ?= $(shell pwd)
|
||||||
BIN_DIR ?= $(shell pwd)
|
BIN_DIR ?= $(shell pwd)
|
||||||
|
|
Loading…
Reference in New Issue