(command)
| 26 | |
| 27 | |
| 28 | def run_subprocess(command): |
| 29 | logging.info(f"Running command {command}") |
| 30 | proc = subprocess.run(command, shell=True, stdout=subprocess.PIPE, encoding="utf-8") |
| 31 | if proc.returncode != 0: |
| 32 | raise RuntimeError(f"Command failed {command}:\nstdout:\n{proc.stdout}") |
| 33 | return proc |
| 34 | |
| 35 | |
| 36 | def retrieve_test_report(s3_url, target_dir): |
no test coverage detected
searching dependent graphs…