mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
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:
committed by
GitHub
parent
a62f0f051a
commit
41feef4391
2
Makefile
2
Makefile
@@ -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
|
||||
|
||||
@@ -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() {
|
||||
Reference in New Issue
Block a user