Skip to content

Commit c48da2b

Browse files
committed
Remove debug statement
1 parent c208922 commit c48da2b

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

.github/scripts/extract_benchmark_results.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ def read_benchmark_config(
337337
try:
338338
with request.urlopen(artifact_s3_url) as data:
339339
for line in data.read().decode("utf8").splitlines():
340-
print(line)
341340
m = BENCHMARK_CONFIG_REGEX.match(line)
342341
if not m:
343342
continue
@@ -356,8 +355,6 @@ def read_benchmark_config(
356355
return json.load(f)
357356
except json.JSONDecodeError as e:
358357
warning(f"Fail to load benchmark config {filename}: {e}")
359-
360-
print(">>>>>>>")
361358
except error.HTTPError:
362359
warning(f"Fail to read the test spec output at {artifact_s3_url}")
363360

@@ -486,9 +483,6 @@ def main() -> None:
486483
benchmark_config = read_benchmark_config(
487484
artifact_s3_url, args.benchmark_configs
488485
)
489-
print(benchmark_config)
490-
491-
continue
492486

493487
if app_type == "ANDROID_APP":
494488
benchmark_results = extract_android_benchmark_results(

0 commit comments

Comments
 (0)