(self, args)
| 296 | return self._raw(url, timeout, options) |
| 297 | |
| 298 | def _run(self, args) -> ExecResult: |
| 299 | print(("execute: %s" % " ".join(args))) |
| 300 | start = datetime.now() |
| 301 | p = subprocess.run(args, capture_output=True, text=False) |
| 302 | return ExecResult(args=args, exit_code=p.returncode, |
| 303 | stdout=p.stdout, stderr=p.stderr, |
| 304 | duration=datetime.now() - start) |
no test coverage detected