From f4592bde4459005385cb727ffd2bb5e960b12f7a Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Thu, 9 Oct 2014 21:02:25 -0700 Subject: [PATCH] Make rules for integ and e2e tests --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Makefile b/Makefile index dc4965642a..7d961c3b72 100644 --- a/Makefile +++ b/Makefile @@ -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: