(self, *, cmd, env=None, output_file=None, log_cmd=False)
| 125 | return {os.system(full_cmd), full_cmd} |
| 126 | |
| 127 | def _run_system(self, *, cmd, env=None, output_file=None, log_cmd=False): |
| 128 | result, full_cmd = self._run_system_unsafe(cmd=cmd, env=env, output_file=output_file, log_cmd=log_cmd) |
| 129 | if result: |
| 130 | raise Exception(f'Error during executing {full_cmd}') |
| 131 | |
| 132 | def _get_cached_binary_name(self, *, binary, binary_cache_suffix=None): |
| 133 | binary_path = os.path.join(self.build_dir, f'{binary}_{self.branch}') |
no test coverage detected