Commit a71db6e0 authored by Geoff Simmons's avatar Geoff Simmons

Narrow the test target to testable code.

Generated code in pkg/apis and pkg/client has no tests, and fails
golint noisily, but none of it is actionable.
parent 30f73f01
......@@ -67,9 +67,11 @@ k8s-ingress: build
CGO_ENABLED=0 GOOS=linux vgo build -o k8s-ingress cmd/*.go
check: build
golint ./pkg/...
golint ./pkg/controller/...
golint ./pkg/interfaces/...
golint ./pkg/varnish/...
golint ./cmd/...
vgo test -v $(CODE_SUBDIRS)
vgo test -v ./pkg/controller/... ./pkg/interfaces/... ./pkg/varnish/...
test: check
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment