Commit 1ba24b4f authored by Raymond Hettinger's avatar Raymond Hettinger

Include module name in doctest summary.

parent 627728ac
......@@ -288,5 +288,5 @@ def run_doctest(module, verbosity=None):
finally:
sys.stdout = save_stdout
if verbose:
print 'Ran %d doctests with zero failures' % (t,)
print 'doctest (%s) ... %d tests with zero failures' % (module.__name__, t)
return f, t
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment