[issue11389] unittest: no way to control verbosity of doctests from cmd

2014-07-02 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- resolution: - duplicate stage: - resolved status: open - closed superseder: - TextTestRunner methods are not documented ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11389

[issue11389] unittest: no way to control verbosity of doctests from cmd

2014-06-27 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- type: - behavior versions: +Python 2.7, Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11389 ___

[issue11389] unittest: no way to control verbosity of doctests from cmd

2011-03-06 Thread anatoly techtonik
anatoly techtonik techto...@gmail.com added the comment: I need to execute doctests along with unit tests from test suite contained in tests.py file and control verbosity parameter in case something goes wrong. -- ___ Python tracker

[issue11389] unittest: no way to control verbosity of doctests from cmd

2011-03-06 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk added the comment: Anatoly, does the verbosity parameter work for you? If not then any feature request / change needs to be for the DocFileSuite as the information is coming from there rather than unittest itself. -- assignee: docs@python -

[issue11389] unittest: no way to control verbosity of doctests from cmd

2011-03-04 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: The undocumented verbosity parameter? -- nosy: +michael.foord, terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11389 ___

[issue11389] unittest: no way to control verbosity of doctests from cmd

2011-03-04 Thread Michael Foord
Michael Foord mich...@voidspace.org.uk added the comment: If the verbosity parameter isn't sufficient (which needs documenting but that is issue 11385) then it would need to be a feature request on DocFileSuite (part of doctest). -- ___ Python

[issue11389] unittest: no way to control verbosity of doctests from cmd

2011-03-03 Thread anatoly techtonik
New submission from anatoly techtonik techto...@gmail.com: 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