From 7acb50c6d8bb1ed11d151a38ed361e1128743f34 Mon Sep 17 00:00:00 2001 From: Joseph Chen Date: Wed, 17 Apr 2024 23:29:19 +0000 Subject: [PATCH] Increase windows test timeout --- scripts/test/run-integration-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test/run-integration-tests.sh b/scripts/test/run-integration-tests.sh index 4f7b2105..86d50176 100755 --- a/scripts/test/run-integration-tests.sh +++ b/scripts/test/run-integration-tests.sh @@ -42,7 +42,7 @@ function run_integration_tests(){ TEST_RESULT=success (cd $INTEGRATION_TEST_DIR/perpodsg && CGO_ENABLED=0 ginkgo --skip=LOCAL $EXTRA_GINKGO_FLAGS -v -timeout=35m -- -cluster-kubeconfig=$KUBE_CONFIG_PATH -cluster-name=$CLUSTER_NAME --aws-region=$REGION --aws-vpc-id $VPC_ID) || TEST_RESULT=fail if [[ -z "${SKIP_WINDOWS_TEST}" ]]; then - (cd $INTEGRATION_TEST_DIR/windows && CGO_ENABLED=0 ginkgo --skip=LOCAL $EXTRA_GINKGO_FLAGS -v -timeout=100m -- -cluster-kubeconfig=$KUBE_CONFIG_PATH -cluster-name=$CLUSTER_NAME --aws-region=$REGION --aws-vpc-id $VPC_ID) || TEST_RESULT=fail + (cd $INTEGRATION_TEST_DIR/windows && CGO_ENABLED=0 ginkgo --skip=LOCAL $EXTRA_GINKGO_FLAGS -v -timeout=120m -- -cluster-kubeconfig=$KUBE_CONFIG_PATH -cluster-name=$CLUSTER_NAME --aws-region=$REGION --aws-vpc-id $VPC_ID) || TEST_RESULT=fail else echo "skipping Windows tests" fi