diff options
| author | Scott Gasch <[email protected]> | 2022-02-26 10:47:16 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-26 10:47:16 -0800 |
| commit | 84b6592ce26c6716d7cce86caa70a27862c293a3 (patch) | |
| tree | c16f7169e2db542c15292277b2a6669c1f98f0b4 | |
| parent | 7627b3efb55f489f92fb718394b5651a137974f5 (diff) | |
Increase timeout.
| -rwxr-xr-x | tests/run_some_dependencies_test.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/run_some_dependencies_test.py b/tests/run_some_dependencies_test.py index 1182f23..fcc9e7a 100755 --- a/tests/run_some_dependencies_test.py +++ b/tests/run_some_dependencies_test.py @@ -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) |
