This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author techtonik
Recipients docs@python, techtonik
Date 2011-03-03.19:57:24
SpamBayes Score 4.745527e-08
Marked as misclassified No
Message-id <1299182245.29.0.387603597674.issue11389@psf.upfronthosting.co.za>
In-reply-to
Content
I can't find a way to execute DocTests contained in a separate README.txt file using unittest.main() function. That doesn't allow to control verbosity for debugging.

I am doing it this way in the tests.py

import doctest
import unittest
if __name__ == '__main__':
  runner = unittest.TextTestRunner()
  runner.run(doctest.DocFileSuite('README.txt',
    optionflags=doctest.ELLIPSIS))


I could find a way to subclass TestLoader.loadTestsFromNames() by looking at the source code of undocumented TestProgram. I'd like to see this use case at least covered by documentation if not properly developed for stdlib of Python4.
History
Date User Action Args
2011-03-03 19:57:25techtoniksetrecipients: + techtonik, docs@python
2011-03-03 19:57:25techtoniksetmessageid: <1299182245.29.0.387603597674.issue11389@psf.upfronthosting.co.za>
2011-03-03 19:57:24techtoniklinkissue11389 messages
2011-03-03 19:57:24techtonikcreate