Run the tests without collecting errors in a TestResult
(self)
| 83 | return self.run(*args, **kwds) |
| 84 | |
| 85 | def debug(self): |
| 86 | """Run the tests without collecting errors in a TestResult""" |
| 87 | for test in self: |
| 88 | test.debug() |
| 89 | |
| 90 | |
| 91 | class TestSuite(BaseTestSuite): |