summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/suite.py
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-09-01 04:58:41 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-09-01 04:58:41 (GMT)
commit8913a6c83dd34300f4a13950036b01c0e2cad1b0 (patch)
tree3accedf450c81d822efb09c3ef32c0d406d3ebd1 /Lib/unittest/suite.py
parent59360aadd31f9bdd4e018ad8acb8f06ece5423a6 (diff)
downloadcpython-8913a6c83dd34300f4a13950036b01c0e2cad1b0.zip
cpython-8913a6c83dd34300f4a13950036b01c0e2cad1b0.tar.gz
cpython-8913a6c83dd34300f4a13950036b01c0e2cad1b0.tar.bz2
Issue #11798: fix tests for regrtest -R :
Diffstat (limited to 'Lib/unittest/suite.py')
-rw-r--r--Lib/unittest/suite.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py
index 176af57..ca82765 100644
--- a/Lib/unittest/suite.py
+++ b/Lib/unittest/suite.py
@@ -16,6 +16,8 @@ def _call_if_exists(parent, attr):
class BaseTestSuite(object):
"""A simple test suite that doesn't provide class or module shared fixtures.
"""
+ _cleanup = True
+
def __init__(self, tests=()):
self._tests = []
self.addTests(tests)
@@ -61,7 +63,8 @@ class BaseTestSuite(object):
if result.shouldStop:
break
test(result)
- self._removeTestAtIndex(index)
+ if self._cleanup:
+ self._removeTestAtIndex(index)
return result
def _removeTestAtIndex(self, index):
@@ -115,7 +118,8 @@ class TestSuite(BaseTestSuite):
else:
test.debug()
- self._removeTestAtIndex(index)
+ if self._cleanup:
+ self._removeTestAtIndex(index)
if topLevel:
self._tearDownPreviousClass(None, result)