From 76b0d71670b15ad5d9255e59040140a9c2a52c61 Mon Sep 17 00:00:00 2001 From: Sharif Elgamal Date: Wed, 9 Dec 2020 11:11:45 -0800 Subject: [PATCH] add alias target for functional tests in makefile --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 625bfcdcf2..e9a9fdcbad 100644 --- a/Makefile +++ b/Makefile @@ -297,6 +297,8 @@ integration-none-driver: e2e-linux-$(GOARCH) out/minikube-linux-$(GOARCH) ## Tr integration-versioned: out/minikube ## Trigger minikube integration testing, logs to ./out/testout_COMMIT.txt go test -ldflags="${MINIKUBE_LDFLAGS}" -v -test.timeout=90m $(INTEGRATION_TESTS_TO_RUN) --tags="$(MINIKUBE_INTEGRATION_BUILD_TAGS) versioned" $(TEST_ARGS) 2>&1 | tee "./out/testout_$(COMMIT_SHORT).txt" +functional: integration-functional-only + .PHONY: integration-functional-only integration-functional-only: out/minikube$(IS_EXE) ## Trigger only functioanl tests in integration test, logs to ./out/testout_COMMIT.txt go test -ldflags="${MINIKUBE_LDFLAGS}" -v -test.timeout=20m $(INTEGRATION_TESTS_TO_RUN) --tags="$(MINIKUBE_INTEGRATION_BUILD_TAGS)" $(TEST_ARGS) -test.run TestFunctional 2>&1 | tee "./out/testout_$(COMMIT_SHORT).txt"