From 7ea7e43b17fc1b2d4e6654bcd835c6485df5ca58 Mon Sep 17 00:00:00 2001 From: helenxie-bit Date: Mon, 16 Sep 2024 21:36:56 -0600 Subject: [PATCH] increase timeout limit Signed-off-by: helenxie-bit --- test/e2e/v1beta1/scripts/gh-actions/run-e2e-tune-api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/v1beta1/scripts/gh-actions/run-e2e-tune-api.py b/test/e2e/v1beta1/scripts/gh-actions/run-e2e-tune-api.py index 5dae31ade3e..1a5f9eed99d 100644 --- a/test/e2e/v1beta1/scripts/gh-actions/run-e2e-tune-api.py +++ b/test/e2e/v1beta1/scripts/gh-actions/run-e2e-tune-api.py @@ -13,8 +13,8 @@ from peft import LoraConfig from verify import verify_experiment_results -# Experiment timeout is 60 min. -EXPERIMENT_TIMEOUT = 60 * 10 +# Experiment timeout is 40 min. +EXPERIMENT_TIMEOUT = 60 * 40 # The default logging config. logging.basicConfig(level=logging.INFO)