From f126ec7ee2c4d445d5de1fe05744c0f6d3b50561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 3 Jan 2023 08:19:19 +0100 Subject: [PATCH] increase timeout to 15s --- ci/nur/update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/nur/update.py b/ci/nur/update.py index 79098144e..51b16b1a3 100644 --- a/ci/nur/update.py +++ b/ci/nur/update.py @@ -52,9 +52,9 @@ import {EVALREPO_PATH} {{ env = dict(PATH=os.environ["PATH"], NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM="1") proc = subprocess.Popen(cmd, env=env, stdout=subprocess.DEVNULL) try: - res = proc.wait(10) + res = proc.wait(15) except subprocess.TimeoutExpired: - raise EvalError(f"evaluation for {repo.name} timed out of after 10 seconds") + raise EvalError(f"evaluation for {repo.name} timed out of after 15 seconds") if res != 0: raise EvalError(f"{repo.name} does not evaluate:\n$ {' '.join(cmd)}")