From 9237e5dc3df54036da5ee055c3b40025bf4bb155 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Fri, 21 Aug 2020 22:36:08 +0200 Subject: [PATCH] test: use pydoc docstring --- test/scenarios/lib.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/scenarios/lib.py b/test/scenarios/lib.py index bffd4bb..1de7039 100644 --- a/test/scenarios/lib.py +++ b/test/scenarios/lib.py @@ -33,11 +33,12 @@ def assert_running(unit): if "is_interactive" in vars(): raise Exception() -### Tests -# The argument extra_tests is a dictionary from strings to functions. The string -# determines at which point of run_tests the corresponding function is executed. def run_tests(extra_tests): + """ + :param extra_tests: Test functions that hook into the testing code below + :type extra_tests: Dict[str, Callable[]] + """ test_security() assert_running("bitcoind")