Lower e2e timeout to not waste time when it hangs

Ginkgo v2 can result in the test just hanging at the end if there is
some bug which is leaking processes. The tests never take 90 mins
anyway. Just lower that time to 50 mins max. Usually they take between
30-40 mins so we should be fine with 50 mins.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2023-04-12 20:27:42 +02:00
parent fbb7c980aa
commit b9ba850440

View File

@ -574,7 +574,7 @@ local_integration_test_task: &local_integration_test_task
- unit_test - unit_test
matrix: *platform_axis matrix: *platform_axis
gce_instance: *standardvm gce_instance: *standardvm
timeout_in: 90m timeout_in: 50m
env: env:
TEST_FLAVOR: int TEST_FLAVOR: int
clone_script: *get_gosrc clone_script: *get_gosrc
@ -620,7 +620,7 @@ container_integration_test_task:
CI_DESIRED_RUNTIME: crun CI_DESIRED_RUNTIME: crun
CI_DESIRED_NETWORK: cni CI_DESIRED_NETWORK: cni
gce_instance: *standardvm gce_instance: *standardvm
timeout_in: 90m timeout_in: 50m
env: env:
TEST_FLAVOR: int TEST_FLAVOR: int
TEST_ENVIRON: container TEST_ENVIRON: container
@ -639,7 +639,7 @@ rootless_integration_test_task:
depends_on: *build_unit depends_on: *build_unit
matrix: *platform_axis matrix: *platform_axis
gce_instance: *standardvm gce_instance: *standardvm
timeout_in: 90m timeout_in: 50m
env: env:
TEST_FLAVOR: int TEST_FLAVOR: int
PRIV_NAME: rootless PRIV_NAME: rootless