Skip to content

Commit d348115

Browse files
committed
Use raw_download option when downloading code coverage artifacts from GCP
Work around googleapis/google-resumable-media-python#204
1 parent 382c209 commit d348115

File tree

1 file changed

+1
-1
lines changed
  • tools/code_coverage_tools

1 file changed

+1
-1
lines changed

tools/code_coverage_tools/gcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def download_report(
5858
return True
5959

6060
os.makedirs(os.path.dirname(full_archive_path), exist_ok=True)
61-
blob.download_to_filename(full_archive_path)
61+
blob.download_to_filename(full_archive_path, raw_download=True)
6262
logger.info("Downloaded report archive", path=full_archive_path)
6363

6464
with open(full_path, "wb") as output:

0 commit comments

Comments
 (0)