From 03839326e70418bd9a44e55ea77869fa9155632c Mon Sep 17 00:00:00 2001 From: helenxie-bit Date: Thu, 12 Sep 2024 18:00:12 -0600 Subject: [PATCH] extend 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 707c8a431ba..e27d0d81d07 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 40 min. -EXPERIMENT_TIMEOUT = 60 * 40 +# Experiment timeout is 60 min. +EXPERIMENT_TIMEOUT = 60 * 60 # The default logging config. logging.basicConfig(level=logging.INFO)