Message130001
| 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:25 | techtonik | set | recipients:
+ techtonik, docs@python |
| 2011年03月03日 19:57:25 | techtonik | set | messageid: <1299182245.29.0.387603597674.issue11389@psf.upfronthosting.co.za> |
| 2011年03月03日 19:57:24 | techtonik | link | issue11389 messages |
| 2011年03月03日 19:57:24 | techtonik | create |
|