(self, options)
| 106 | """ |
| 107 | |
| 108 | def __init__(self, options): |
| 109 | super().__init__() |
| 110 | self.max_failures = options.max_failures |
| 111 | self.failing_and_slow_first = options.failing_and_slow_first |
| 112 | |
| 113 | def addTest(self, test): |
| 114 | super().addTest(test) |