X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=tests%2Frun_some_dependencies_test.py;h=c9f48a51a77d1b7c35bb1925e434198885d886ea;hb=290e40e0bf150ab889ada06e500a5835d3935da6;hp=1182f23d33b7eed38705860be639e3508df4f435;hpb=244e8476c95d14a480be7160042b2b27b693ca63;p=python_utils.git diff --git a/tests/run_some_dependencies_test.py b/tests/run_some_dependencies_test.py index 1182f23..c9f48a5 100755 --- a/tests/run_some_dependencies_test.py +++ b/tests/run_some_dependencies_test.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +# © Copyright 2021-2022, Scott Gasch + """This is a "test" that just runs a few system utilities that have dependencies on this library in "do nothing" mode and makes sure they exit cleanly. @@ -8,7 +10,6 @@ exit cleanly. import logging import unittest -from typing import Optional import bootstrap import exec_utils @@ -31,7 +32,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)