summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/result.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10979. unittest stdout buffering now works for class and module fixtures.Michael Foord2011-03-171-1/+7
|
* Merged revisions 86101 via svnmerge fromMichael Foord2010-11-011-0/+1
| | | | | | | | | | 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. ........
* unittest.result.TestResult does not create its buffers until they're used. ↵Michael Foord2010-04-071-3/+6
| | | | It uses StringIO not cStringIO. Issue 8333.
* Cross platform unittest.TestResult newline handling when buffering stdout / ↵Michael Foord2010-04-031-11/+10
| | | | stderr.
* unittest tests no longer replace the sys.stdout put in place by regrtestMichael Foord2010-04-021-6/+2
|
* TestResult stores original sys.stdout and tests no longer use sys.__stdout__ ↵Michael Foord2010-04-021-2/+4
| | | | (etc) in tests for unittest -b command line option
* Addition of -b command line option to unittest for buffering stdout and ↵Michael Foord2010-04-021-2/+61
| | | | stderr during test runs.
* expected failure should not trigger failfast behavior in unittest.Michael Foord2010-03-221-1/+0
|
* -f/--failfast command line option for unittest. Issue 8074. Documentation ↵Michael Foord2010-03-221-0/+13
| | | | still needed. Plus minor change to test_unittest to allow it to be run with python -m test.unittest
* Issue 7815. __unittest in module globals trims frames from reported ↵Michael Foord2010-03-221-5/+3
| | | | stacktraces in unittest.
* Addition of setUpClass and setUpModule shared fixtures to unittest.Michael Foord2010-03-071-0/+2
|
* unittest.TestResult can now be used with the TextTestRunner. TextTestRunner ↵Michael Foord2010-02-231-1/+4
| | | | compatible with old TestResult objects.
* Support for old TestResult object (unittest) with warnings when using ↵Michael Foord2010-02-221-2/+2
| | | | unsupported features.
* Issue 7893 and Issue 7588Michael Foord2010-02-101-3/+2
|
* split unittest.py into a packageBenjamin Peterson2009-07-191-0/+113