Subclass of TextTestResult that uses SingleLineTestResult.
| 89 | |
| 90 | |
| 91 | class SingleLineTestRunner(ColorTextRunner): |
| 92 | """Subclass of TextTestResult that uses SingleLineTestResult.""" |
| 93 | |
| 94 | resultclass = SingleLineTestResult # type: ignore |
| 95 | |
| 96 | def __init__(self, *args, **kwargs): |
| 97 | super().__init__(*args, buffer=True, **kwargs) |