Exclude /ui folder from go tests

This commit is contained in:
Max Leonard Inden 2017-04-25 15:01:07 +02:00
parent 9ec25d84c5
commit e2898f8f4d
No known key found for this signature in database
GPG Key ID: 5403C5464810BC26
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
GO := GO15VENDOREXPERIMENT=1 go
PROMU := $(GOPATH)/bin/promu
pkgs = $(shell $(GO) list ./... | grep -v /vendor/)
pkgs = $(shell $(GO) list ./... | grep -v -E '/vendor/|/ui')
PREFIX ?= $(shell pwd)
BIN_DIR ?= $(shell pwd)