(name, kind='Test')
| 76 | |
| 77 | # Prints the name of a test |
| 78 | def print_test(name, kind='Test'): |
| 79 | print(kind + ':', name, '...', end=('' if cfg.log else None), flush=True) |
| 80 | |
| 81 | # Runs a test command |
| 82 | def run_test(cmd, arch='native', retry_if_status=None): |
no test coverage detected