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 chris.jerdonek
Recipients chris.jerdonek, docs@python, sbt
Date 2012-08-12.14:13:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344780813.18.0.630652368038.issue15629@psf.upfronthosting.co.za>
In-reply-to
Content
> Might it be simpler to run doctest over the rst file from the relevant unittest?  (Perhaps with help from test.support.)

If I understand correctly, do you mean for example that Lib/test/test_textwrap.py could be responsible for loading the doctests in Doc/library/textwrap.rst?

One problem with this approach is that the *.rst files are not in one-to-one correspondence with unittest files in Lib/test, etc.  For example, there are folders of *.rst files that may not correspond to any unit test files (e.g. the tutorial folder).  It also introduces more coupling because the unit tests would now have to know about the existence of the Doc/*.rst files (though this could be a nice addition as it would let you run the doctests for a module along with its unit tests if you wanted to run tests only for a particular module).

Or did you mean something else?
History
Date User Action Args
2012-08-12 14:13:33chris.jerdoneksetrecipients: + chris.jerdonek, docs@python, sbt
2012-08-12 14:13:33chris.jerdoneksetmessageid: <1344780813.18.0.630652368038.issue15629@psf.upfronthosting.co.za>
2012-08-12 14:13:32chris.jerdoneklinkissue15629 messages
2012-08-12 14:13:32chris.jerdonekcreate