From acd5b4c8527dc6a13c06dfbf0027f1d7034e4e6e Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Thu, 13 Feb 2020 11:48:32 -0300 Subject: [PATCH] Increase parallel e2e test count and remove the need of dind tasks --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7c65b4251..cbd34f0fd 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ endif # Allow limiting the scope of the e2e tests. By default run everything FOCUS ?= .* # number of parallel test -E2E_NODES ?= 12 +E2E_NODES ?= 15 # slow test only if takes > 50s SLOW_E2E_THRESHOLD ?= 50 # run e2e test suite with tests that check for memory leaks? (default is false) @@ -258,7 +258,7 @@ misspell: check-go-version ## Check for spelling errors. .PHONY: kind-e2e-test kind-e2e-test: check-go-version ## Run e2e tests using kind. - @DIND_TASKS=0 test/e2e/run.sh + @test/e2e/run.sh .PHONY: run-ingress-controller run-ingress-controller: ## Run the ingress controller locally using a kubectl proxy connection.