Merge pull request #1714 from thockin/make

Make rules for integ and e2e tests
pull/6/head
Brendan Burns 2014-10-09 21:13:53 -07:00
commit 707ff3c039
1 changed files with 16 additions and 0 deletions

View File

@ -43,6 +43,22 @@ check test:
hack/test-go.sh $(WHAT) $(TESTS)
.PHONY: check test
# Build and run integration tests.
#
# Example:
# make test_integration
test_integration test_integ:
hack/test-integration.sh
.PHONY: integration
# Build and run end-to-end tests.
#
# Example:
# make test_e2e
test_e2e:
hack/e2e-test.sh
.PHONY: test_e2e
# Remove all build artifacts.
#
# Example: