From: Scott Gasch Date: Sat, 26 Feb 2022 18:47:16 +0000 (-0800) Subject: Increase timeout. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=84b6592ce26c6716d7cce86caa70a27862c293a3;p=python_utils.git Increase timeout. --- 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)