15 for f
in sorted(glob.glob(globber)):
17 test_name = os.path.split(os.path.dirname(f))[1]
18 mod_path =
"eb_tests.%s.test" % test_name
19 test_mod = importlib.import_module(mod_path)
20 docstring = test_mod.__doc__
21 test_dir =
"eb_tests/%s" % test_name
22 title = test_name.replace(
"_",
" ").title()
23 description =
"""## %s\n**Test Directory:** %s\n\n%s\n""" % (title, test_dir, docstring)
25 items.append(description)
27 return "\n".
join(items)