(stdout)
| 34 | |
| 35 | def main(args): |
| 36 | def allocation_str(stdout): |
| 37 | for line in reversed((stdout or '').splitlines()): |
| 38 | if maybe_decode(line).startswith('### Allocations = '): |
| 39 | return line |
| 40 | return None |
| 41 | |
| 42 | cmd = command.Command( |
| 43 | args[0], args[1:], timeout=TIMEOUT, handle_sigterm=True) |
no test coverage detected
searching dependent graphs…