Merge branch 'bugfix/idf_tools_test_timeout_v5.0' into 'release/v5.0'

ci: increase timeout for python packages install test (v5.0)

See merge request espressif/esp-idf!19787
This commit is contained in:
morris
2022-08-26 10:38:54 +08:00

View File

@@ -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