SVN: zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py In stdlibs doctest, if you give report option as a paremeter it overrides all other report options. So, don't do that.
Lennart Regebro <[email protected]>
| Newsgroups | gmane.comp.web.zope.zope3.cvs |
|---|---|
| Message-ID | <20091208105700.A72C39417F__13992.5717180178$1260269832$gmane$org@cvs.zope.org> |
Log message for revision 106273:
In stdlibs doctest, if you give report option as a paremeter it overrides all other report options. So, don't do that.
Changed:
U zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py
-=-
Modified: zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py
===================================================================
--- zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py 2009-12-08 08:57:17 UTC (rev 106272)
+++ zope.testing/branches/regebro-python3-reloaded/src/zope/testing/testrunner/testrunner-ex/sample2/sampletests_1.py 2009-12-08 10:57:00 UTC (rev 106273)
@@ -26,4 +26,4 @@
"""
def test_suite():
- return doctest.DocTestSuite(optionflags=doctest.REPORT_NDIFF)
+ return doctest.DocTestSuite()