(name: str)
| 131 | |
| 132 | |
| 133 | def start_background_cmd(name: str) -> Popen: |
| 134 | cmd = cmds[name] |
| 135 | proc = subprocess.Popen(cmd, stderr=subprocess.STDOUT, stdout=subprocess.PIPE) |
| 136 | return proc |
| 137 | |
| 138 | |
| 139 | def wait_background_cmd(name: str, proc: Popen) -> int: |
no outgoing calls
no test coverage detected
searching dependent graphs…