(self)
| 153 | ) |
| 154 | |
| 155 | def _start_process(self): |
| 156 | with self.log_errors(): |
| 157 | return subprocess.Popen( |
| 158 | args=self._get_popen_args(), |
| 159 | stdout=subprocess.PIPE, |
| 160 | stderr=subprocess.PIPE, |
| 161 | env=self._get_env(), |
| 162 | ) |
| 163 | |
| 164 | def _get_popen_args(self): |
| 165 | return self._to_args_list() |
no test coverage detected