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