From e611c52f706f00c727b6f62c747586ffc6607769 Mon Sep 17 00:00:00 2001 From: Loic Devulder Date: Thu, 16 Nov 2023 09:43:09 +0100 Subject: [PATCH] ci/cli: increase timeout for scalabilty test Needed because cluster state check takes more time now. Signed-off-by: Loic Devulder --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 2bd19c60d..6ae5b9773 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -5,7 +5,7 @@ ISO:=$(shell file -Ls $(ROOT_DIR)/*.iso 2>/dev/null | awk -F':' '/boot sector/ { # Define Ginkgo timeout for the tests GINKGO_TIMEOUT?=3600 ifdef VM_NUMBERS - ifeq ($(shell expr $(VM_NUMBERS) \> 80), 1) + ifeq ($(shell expr $(VM_NUMBERS) \> 50), 1) GINKGO_TIMEOUT=7200 endif endif