From 331b5ed05d6d4d86c9f06464d4749081b30be76a Mon Sep 17 00:00:00 2001 From: Cory O'Daniel Date: Mon, 29 Jul 2019 15:09:22 -0700 Subject: [PATCH] remove k8s master from CI test suite --- Makefile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 24612039..daa30558 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: help clean deps all test tdd cov test/all lint analyze get-and-test-master +.PHONY: help clean deps all test tdd cov test/all test/master lint analyze .PHONY: mock.dupes mock.groups help: ## Show this help @@ -26,16 +26,15 @@ tdd: ## Run fast test on k8s last stable in a loop cov: ## Generate coverage HTML mix coveralls.html -test/all: ## Run full test suite against 1.10+ and master -test/all: test/1.10 test/1.11 test/1.12 test/1.13 test/1.14 test/1.15 -test/all: get-and-test-master - MASTER_SWAGGER_PATH:=test/support/swagger/master.json -get-and-test-master: +test/master: ## Run test suite against master @-rm -f ${MASTER_SWAGGER_PATH} @curl -sSL https://raw.githubusercontent.com/kubernetes/kubernetes/master/api/openapi-spec/swagger.json -o ${MASTER_SWAGGER_PATH} K8S_SPEC=${MASTER_SWAGGER_PATH} mix test +test/all: ## Run full test suite against 1.10+ +test/all: test/1.10 test/1.11 test/1.12 test/1.13 test/1.14 test/1.15 + test/%: ## Run full test suite against a specific k8s version K8S_SPEC=test/support/swagger/$*.json mix test