Increase e2e concurrency

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-03-27 21:13:28 -03:00
parent 3eafaa35a1
commit 630278f730
2 changed files with 6 additions and 2 deletions

View file

@ -42,7 +42,7 @@ endif
# Allow limiting the scope of the e2e tests. By default run everything
FOCUS ?= .*
# number of parallel test
E2E_NODES ?= 10
E2E_NODES ?= 14
# slow test only if takes > 50s
SLOW_E2E_THRESHOLD ?= 50
# run e2e test suite with tests that check for memory leaks? (default is false)

View file

@ -43,7 +43,11 @@ func TestDefaults(t *testing.T) {
oldArgs := os.Args
defer func() { os.Args = oldArgs }()
os.Args = []string{"cmd", "--default-backend-service", "namespace/test", "--http-port", "0", "--https-port", "0"}
os.Args = []string{"cmd",
"--default-backend-service", "namespace/test",
"--http-port", "0",
"--https-port", "0",
}
showVersion, conf, err := parseFlags()
if err != nil {