increase timeout by 60sec devEnv check (#5978)

Signed-off-by: anandrkskd <anandrkskd@gmail.com>

Co-authored-by: Armel Soro <asoro@redhat.com>
This commit is contained in:
Anand Kumar Singh
2022-07-27 19:42:22 +05:30
committed by GitHub
parent a62f0f051a
commit 41feef4391
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ export ODO_LOG_LEVEL ?= 4
# To enable verbosity export or set env GINKGO_TEST_ARGS like "GINKGO_TEST_ARGS=-v"
UNIT_TEST_ARGS ?=
GINKGO_FLAGS_ALL = $(GINKGO_TEST_ARGS) --randomize-all --slow-spec-threshold=$(SLOW_SPEC_THRESHOLD) -timeout $(TIMEOUT)
GINKGO_FLAGS_ALL = $(GINKGO_TEST_ARGS) --randomize-all --slow-spec-threshold=$(SLOW_SPEC_THRESHOLD) -timeout $(TIMEOUT) --no-color
# Flags for tests that must not be run in parallel.
GINKGO_FLAGS_SERIAL = $(GINKGO_FLAGS_ALL) -nodes=1

View File

@@ -33,7 +33,7 @@ var _ = Describe("E2E Test", func() {
body, _ := io.ReadAll(resp.Body)
return string(body)
}, 60*time.Second, 10*time.Second).Should(Equal(assertString))
}, 120*time.Second, 15*time.Second).Should(Equal(assertString))
}
Context("starting with empty Directory", func() {