(self, cmd, env=None, **kwargs)
| 254 | return os.path.isfile(self.src_file) |
| 255 | |
| 256 | def _subprocess_call(self, cmd, env=None, **kwargs): |
| 257 | log.debug("Call '{}'".format(" ".join(cmd))) |
| 258 | return subprocess.check_call(cmd, env=env, **kwargs) |
| 259 | |
| 260 | def _subprocess_output(self, cmd, env=None, **kwargs): |
| 261 | log.debug("Call '{}'".format(" ".join(cmd))) |
no test coverage detected