projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7627b3e
)
Increase timeout.
author
Scott Gasch
<
[email protected]
>
Sat, 26 Feb 2022 18:47:16 +0000
(10:47 -0800)
committer
Scott Gasch
<
[email protected]
>
Sat, 26 Feb 2022 18:47:16 +0000
(10:47 -0800)
tests/run_some_dependencies_test.py
patch
|
blob
|
history
diff --git
a/tests/run_some_dependencies_test.py
b/tests/run_some_dependencies_test.py
index 1182f23d33b7eed38705860be639e3508df4f435..fcc9e7a29341ca5db4e859cba6ec875ce600feb3 100755
(executable)
--- 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, 1
0
.0)
+ ret = exec_utils.cmd_with_timeout(command, 1
5
.0)
self.assertEqual(0, ret)
except Exception as e:
logger.exception(e)