summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run_some_dependencies_test.py2
-rwxr-xr-xtests/run_tests.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/run_some_dependencies_test.py b/tests/run_some_dependencies_test.py
index a7ee9b4..addb015 100755
--- a/tests/run_some_dependencies_test.py
+++ b/tests/run_some_dependencies_test.py
@@ -32,7 +32,7 @@ class RunSomeDependenciesTest(unittest.TestCase):
]
for command in commands:
try:
- ret = exec_utils.cmd_exitcode(command, 15.0)
+ ret = exec_utils.cmd_exitcode(command, 25.0)
self.assertEqual(0, ret)
except Exception as e:
logger.exception(e)
diff --git a/tests/run_tests.py b/tests/run_tests.py
index 6d6c0b8..bc1c09b 100755
--- a/tests/run_tests.py
+++ b/tests/run_tests.py
@@ -27,7 +27,7 @@ import text_utils
import thread_utils
logger = logging.getLogger(__name__)
-args = config.add_commandline_args(f'({__file__})', 'Args related to __file__')
+args = config.add_commandline_args(f'({__file__})', f'Args related to {__file__}')
args.add_argument('--unittests', '-u', action='store_true', help='Run unittests.')
args.add_argument('--doctests', '-d', action='store_true', help='Run doctests.')
args.add_argument('--integration', '-i', action='store_true', help='Run integration tests.')