(self)
| 27 | self.notify_finish_thread = None |
| 28 | |
| 29 | def start(self): |
| 30 | self.start_execution(self.command, self.working_directory) |
| 31 | |
| 32 | read_output_thread = threading.Thread(target=self.pipe_process_output) |
| 33 | read_output_thread.start() |
| 34 | |
| 35 | self.notify_finish_thread = threading.Thread(target=self.notify_finished) |
| 36 | self.notify_finish_thread.start() |
| 37 | |
| 38 | def prepare_env_variables(self): |
| 39 | env_variables = dict(**self.all_env_variables) |
nothing calls this directly
no test coverage detected