mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
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
This commit is contained in:
parent
319bf4e333
commit
87c93cef31
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user