summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/suite.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10979. unittest stdout buffering now works for class and module fixtures.Michael Foord2011-03-171-1/+17
|
* Improvement to fix for issue 9926 to allow TestResult to be reused.Michael Foord2010-12-191-0/+1
|
* Merged revisions 86101 via svnmerge fromMichael Foord2010-11-011-19/+17
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86101 | michael.foord | 2010-11-01 21:09:03 +0000 (Mon, 01 Nov 2010) | 1 line Fix issue 9926. TestSuite subclasses that override __call__ are called correctly. ........
* Fix issue with nested test suites debug method and module setups. (unittest)Michael Foord2010-06-101-1/+1
|
* Issue 8948. cleanup functions are not run by unittest.TestCase.debug(), plus ↵Michael Foord2010-06-081-2/+26
| | | | class and module teardowns are not run by unittest.TestSuite.debug().
* Tests for issue 8302, skipped test in a setUpClass or a setUpModule are ↵Michael Foord2010-06-051-2/+2
| | | | reported as skips rather than errors.
* Issue 8302. SkipTest exception is setUpClass or setUpModule is now reported ↵Michael Foord2010-06-051-21/+23
| | | | as a skip rather than an error.
* unittest: issue 8301. Adding functions to test suites no longer crashes.Michael Foord2010-05-081-1/+6
|
* Issue 7815. __unittest in module globals trims frames from reported ↵Michael Foord2010-03-221-0/+2
| | | | stacktraces in unittest.
* Addition of setUpClass and setUpModule shared fixtures to unittest.Michael Foord2010-03-071-8/+191
|
* Change error report when the object passed to suite.addTest is notR. David Murray2010-01-281-1/+1
| | | | callable to include the repr of the invalid object.
* Test discovery in unittest will only attempt to import modules that are ↵Michael Foord2009-09-131-1/+2
| | | | importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
* split unittest.py into a packageBenjamin Peterson2009-07-191-0/+71