Increase timeout.
authorScott Gasch <[email protected]>
Sat, 26 Feb 2022 18:47:16 +0000 (10:47 -0800)
committerScott Gasch <[email protected]>
Sat, 26 Feb 2022 18:47:16 +0000 (10:47 -0800)
tests/run_some_dependencies_test.py

index 1182f23d33b7eed38705860be639e3508df4f435..fcc9e7a29341ca5db4e859cba6ec875ce600feb3 100755 (executable)
@@ -8,7 +8,6 @@ exit cleanly.
 
 import logging
 import unittest
-from typing import Optional
 
 import bootstrap
 import exec_utils
@@ -31,7 +30,7 @@ class RunSomeDependenciesTest(unittest.TestCase):
         ]
         for command in commands:
             try:
-                ret = exec_utils.cmd_with_timeout(command, 10.0)
+                ret = exec_utils.cmd_with_timeout(command, 15.0)
                 self.assertEqual(0, ret)
             except Exception as e:
                 logger.exception(e)