Increase parallel e2e test count and remove the need of dind tasks
This commit is contained in:
parent
4a21dc17f4
commit
acd5b4c852
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -42,7 +42,7 @@ endif
|
||||||
# Allow limiting the scope of the e2e tests. By default run everything
|
# Allow limiting the scope of the e2e tests. By default run everything
|
||||||
FOCUS ?= .*
|
FOCUS ?= .*
|
||||||
# number of parallel test
|
# number of parallel test
|
||||||
E2E_NODES ?= 12
|
E2E_NODES ?= 15
|
||||||
# slow test only if takes > 50s
|
# slow test only if takes > 50s
|
||||||
SLOW_E2E_THRESHOLD ?= 50
|
SLOW_E2E_THRESHOLD ?= 50
|
||||||
# run e2e test suite with tests that check for memory leaks? (default is false)
|
# 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
|
.PHONY: kind-e2e-test
|
||||||
kind-e2e-test: check-go-version ## Run e2e tests using kind.
|
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
|
.PHONY: run-ingress-controller
|
||||||
run-ingress-controller: ## Run the ingress controller locally using a kubectl proxy connection.
|
run-ingress-controller: ## Run the ingress controller locally using a kubectl proxy connection.
|
||||||
|
|
Loading…
Reference in a new issue