From 87c93cef313dae263ab7f2420786904e1cdf867b Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Thu, 25 Aug 2022 10:45:03 +0200 Subject: [PATCH] ci: increase timeout for python packages install test On the build runners, the installation frequently takes around 150 seconds, which is above the current timeout. This change increases the timeout. Closes IDFCI-1436 --- tools/test_idf_tools/test_idf_tools_python_env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test_idf_tools/test_idf_tools_python_env.py b/tools/test_idf_tools/test_idf_tools_python_env.py index 985ae140a0..29167f2dab 100644 --- a/tools/test_idf_tools/test_idf_tools_python_env.py +++ b/tools/test_idf_tools/test_idf_tools_python_env.py @@ -33,7 +33,7 @@ class TestPythonInstall(unittest.TestCase): def run_idf_tools(self, extra_args): # type: (List[str]) -> str args = [sys.executable, '../idf_tools.py'] + extra_args - ret = subprocess.run(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, timeout=120) + ret = subprocess.run(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, timeout=300) return ret.stdout.decode('utf-8', 'ignore') def test_default_arguments(self): # type: () -> None