Commit 94fc1e31 by Patrick Ohly

build.make: avoid unit-testing E2E test suite

In repos that have a test/e2e, that test suite should be run separately because it depends on a running cluster.
parent 849db0ad
...@@ -98,7 +98,7 @@ test: ...@@ -98,7 +98,7 @@ test:
test: test-go test: test-go
test-go: test-go:
@ echo; echo "### $@:" @ 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 .PHONY: test-vet
test: test-vet test: test-vet
......
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