Backport #62044 to 24.3: CI: fix for timeout env variable

This commit is contained in:
robot-clickhouse 2024-03-28 16:07:44 +00:00
parent 923b806df2
commit b42aa4d550

View File

@ -1761,9 +1761,10 @@ def _run_test(job_name: str, run_command: str) -> int:
run_command or CI_CONFIG.get_job_config(job_name).run_command
), "Run command must be provided as input argument or be configured in job config"
if CI_CONFIG.get_job_config(job_name).timeout:
os.environ["KILL_TIMEOUT"] = str(CI_CONFIG.get_job_config(job_name).timeout)
if not run_command:
if CI_CONFIG.get_job_config(job_name).timeout:
os.environ["KILL_TIMEOUT"] = str(CI_CONFIG.get_job_config(job_name).timeout)
run_command = "/".join(
(os.path.dirname(__file__), CI_CONFIG.get_job_config(job_name).run_command)
)