We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f63989 commit d2b8c25Copy full SHA for d2b8c25
backend/code_coverage_backend/gcp.py
@@ -229,6 +229,20 @@ def find_closest_report(
229
if push_id:
230
# Redis lib uses bytes for all output
231
push_id = int(push_id.decode("utf-8"))
232
+ date = self.redis.hget(key, "date").decode("utf-8")
233
+
234
+ # Check the report variant is available locally
235
+ report = Report(
236
+ self.reports_dir,
237
+ repository,
238
+ changeset,
239
+ platform,
240
+ suite,
241
+ push_id=push_id,
242
+ date=date,
243
+ )
244
+ if not os.path.exists(report.path):
245
+ self.ingest_report(report)
246
else:
247
248
# Lookup push from HGMO (slow)
0 commit comments