Skip to content

Commit

Permalink
fix(tools): Increase timeout in idf_tools.py Python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dobairoland committed Aug 7, 2023
1 parent 6b5b8a8 commit f5c596e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test_idf_tools/test_idf_tools_python_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def tearDownModule(): # type: () -> None

class BasePythonInstall(unittest.TestCase):
def run_tool(self, cmd): # type: (List[str]) -> str
ret = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, timeout=300)
ret = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, timeout=600)
decoded_output = ret.stdout.decode('utf-8', 'ignore')
with open(os.path.join(IDF_PATH, 'tools', 'test_idf_tools', 'test_python_env_logs.txt'), 'a+') as w:
# stack() returns list of callers frame records. [1] represent caller of this function
Expand Down

0 comments on commit f5c596e

Please sign in to comment.