Run the tests without collecting errors in a TestResult
(self)
| 132 | return result |
| 133 | |
| 134 | def debug(self): |
| 135 | """Run the tests without collecting errors in a TestResult""" |
| 136 | debug = _DebugResult() |
| 137 | self.run(debug, True) |
| 138 | |
| 139 | ################################ |
| 140 |