Skip to content

Commit 88245c7

Browse files
authored
increase update timeout, setup timeout for ginkgo (#565)
1 parent 9719113 commit 88245c7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test-forked.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ jobs:
274274
275275
go install github.com/onsi/ginkgo/v2/[email protected] && \
276276
go install github.com/onsi/gomega/...
277-
ginkgo --label-filter="${TEST_NAME}" --nodes=10 -v test/e2e/
277+
ginkgo --label-filter="${TEST_NAME}" --timeout 120m --nodes=10 -v test/e2e/
278278
279279
- name: Upload operator logs
280280
if: ${{ failure() }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ jobs:
272272
273273
go install github.com/onsi/ginkgo/v2/[email protected] && \
274274
go install github.com/onsi/gomega/...
275-
ginkgo --label-filter="${TEST_NAME}" --nodes=10 -v test/e2e/
275+
ginkgo --label-filter="${TEST_NAME}" --timeout 120m --nodes=10 -v test/e2e/
276276
277277
- name: Upload operator logs
278278
if: ${{ failure() }}

scripts/e2e_local.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ export MCLI_PUBLIC_API_KEY="${public_key}"
3838
export MCLI_PRIVATE_API_KEY="${private_key}"
3939
export MCLI_ORG_ID="${org_id}"
4040
export IMAGE_URL="${image}" #for helm chart
41-
ginkgo --label-filter="${focus_key}" -v test/e2e/
41+
ginkgo --label-filter="${focus_key}" --timeout 120m -v test/e2e/

test/e2e/actions/steps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func WaitCluster(input model.UserInputs, generation string) {
3535
func() string {
3636
return kubecli.GetStatusCondition("Ready", input.Namespace, input.Clusters[0].GetClusterNameResource())
3737
},
38-
"45m", "1m",
38+
"60m", "1m",
3939
).Should(Equal("True"), "Kubernetes resource: Cluster status `Ready` should be 'True'")
4040

4141
ExpectWithOffset(1, kubecli.GetK8sClusterStateName(

0 commit comments

Comments
 (0)