(ltext, rtext, width=70, fill='-')
| 323 | to_run, not_run = prepare_controllers(options) |
| 324 | |
| 325 | def justify(ltext, rtext, width=70, fill='-'): |
| 326 | ltext += ' ' |
| 327 | rtext = (' ' + rtext).rjust(width - len(ltext), fill) |
| 328 | return ltext + rtext |
| 329 | |
| 330 | # Run all test runners, tracking execution time |
| 331 | failed = [] |