Merge pull request #12 from pohly/local-e2e-suite

build.make: avoid unit-testing E2E test suite
This commit is contained in:
Kubernetes Prow Robot 2019-03-29 11:46:11 -07:00 committed by GitHub
commit 3b6af7b1cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ test:
test: test-go
test-go:
@ echo; echo "### $@:"
go test `go list ./... | grep -v 'vendor' $(TEST_GO_FILTER_CMD)` $(TESTARGS)
go test `go list ./... | grep -v -e 'vendor' -e '/test/e2e$$' $(TEST_GO_FILTER_CMD)` $(TESTARGS)
.PHONY: test-vet
test: test-vet