aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/cifuzz/filestore/github_actions/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/cifuzz/filestore/github_actions/__init__.py')
-rw-r--r--infra/cifuzz/filestore/github_actions/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/infra/cifuzz/filestore/github_actions/__init__.py b/infra/cifuzz/filestore/github_actions/__init__.py
index fbcbb1d7..56d6c2b0 100644
--- a/infra/cifuzz/filestore/github_actions/__init__.py
+++ b/infra/cifuzz/filestore/github_actions/__init__.py
@@ -81,3 +81,7 @@ class GithubActionsFilestore(filestore.BaseFilestore):
def download_latest_build(self, name, dst_directory):
"""Downloads latest build with name |name| to |dst_directory|."""
return self._download_artifact(name, dst_directory)
+
+ def download_coverage(self, name, dst_directory):
+ """Downloads the latest project coverage report."""
+ return self._download_artifact(name, dst_directory)