def load_tests(loader, tests, ignore):
"""Includes doctests and file-based doctests.
Note: function name, 'load_tests', is required.
"""
tests.addTests(doctest.DocTestSuite(server))
tests.addTests(doctest.DocFileSuite("tests.txt"))
return tests
评论列表
文章目录