(s3_url, target_dir)
| 34 | |
| 35 | |
| 36 | def retrieve_test_report(s3_url, target_dir): |
| 37 | command = f"aws --region us-west-2 s3 cp {s3_url} {target_dir} --recursive --no-sign-request" |
| 38 | run_subprocess(command) |
| 39 | |
| 40 | |
| 41 | def get_common_commit_sha(): |
no test coverage detected
searching dependent graphs…