(options)
| 11 | class RerunProc(base.TestProcProducer): |
| 12 | @staticmethod |
| 13 | def create(options): |
| 14 | if not options.rerun_failures_count: |
| 15 | return None |
| 16 | return RerunProc(options.rerun_failures_count, |
| 17 | options.rerun_failures_max) |
| 18 | |
| 19 | def __init__(self, rerun_max, rerun_max_total=None): |
| 20 | super(RerunProc, self).__init__('Rerun') |