diff --git a/doctests.py b/doctests.py index 642e9bacd..0143ba1f9 100644 --- a/doctests.py +++ b/doctests.py @@ -7,7 +7,8 @@ def load_tests(loader, tests, ignore): for root, dirs, files in os.walk("./docs"): for f in files: if f.endswith(".rst"): - tests.addTests(doctest.DocFileSuite(os.path.join(root, f))) + tests.addTests(doctest.DocFileSuite(os.path.join(root, f), + optionflags=doctest.ELLIPSIS)) return tests