From: Scott Gasch Date: Sun, 6 Feb 2022 23:14:14 +0000 (-0800) Subject: Give deps more time to run. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=3c05841f04d89409bb7bef6e6f8641c4ec31b803;p=python_utils.git Give deps more time to run. --- diff --git a/tests/run_some_dependencies_test.py b/tests/run_some_dependencies_test.py index 20f44cb..ebe61c0 100755 --- a/tests/run_some_dependencies_test.py +++ b/tests/run_some_dependencies_test.py @@ -30,7 +30,7 @@ class RunSomeDependenciesTest(unittest.TestCase): ] for command in commands: try: - ret = exec_utils.cmd_with_timeout(command, 5.0) + ret = exec_utils.cmd_with_timeout(command, 10.0) self.assertEqual(0, ret) except Exception as e: logger.exception(e)