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