Increase timeout of fast test

This commit is contained in:
Alexey Milovidov 2023-06-25 06:10:57 +02:00
parent 71678f64b1
commit 511b2cdc21

View File

@ -150,7 +150,7 @@ def main():
os.makedirs(logs_path) os.makedirs(logs_path)
run_log_path = os.path.join(logs_path, "run.log") run_log_path = os.path.join(logs_path, "run.log")
with TeePopen(run_cmd, run_log_path, timeout=40 * 60) as process: with TeePopen(run_cmd, run_log_path, timeout = 90 * 60) as process:
retcode = process.wait() retcode = process.wait()
if retcode == 0: if retcode == 0:
logging.info("Run successfully") logging.info("Run successfully")