summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-02-26 10:47:16 -0800
committerScott Gasch <[email protected]>2022-02-26 10:47:16 -0800
commit84b6592ce26c6716d7cce86caa70a27862c293a3 (patch)
treec16f7169e2db542c15292277b2a6669c1f98f0b4
parent7627b3efb55f489f92fb718394b5651a137974f5 (diff)
Increase timeout.
-rwxr-xr-xtests/run_some_dependencies_test.py3
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)