Kills and restarts the process
(self, signal=SIGKILL)
| 533 | check_call(["docker", "container", "start", self.container_id]) |
| 534 | |
| 535 | def restart(self, signal=SIGKILL): |
| 536 | """Kills and restarts the process""" |
| 537 | self.kill(signal=signal) |
| 538 | self.wait_for_exit() |
| 539 | self.start() |
| 540 | |
| 541 | def wait_for_exit(self): |
| 542 | """Wait until the process exits (or return immediately if it already has exited.""" |
nothing calls this directly
no test coverage detected