File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -337,7 +337,6 @@ def read_benchmark_config(
337
337
try :
338
338
with request .urlopen (artifact_s3_url ) as data :
339
339
for line in data .read ().decode ("utf8" ).splitlines ():
340
- print (line )
341
340
m = BENCHMARK_CONFIG_REGEX .match (line )
342
341
if not m :
343
342
continue
@@ -356,8 +355,6 @@ def read_benchmark_config(
356
355
return json .load (f )
357
356
except json .JSONDecodeError as e :
358
357
warning (f"Fail to load benchmark config { filename } : { e } " )
359
-
360
- print (">>>>>>>" )
361
358
except error .HTTPError :
362
359
warning (f"Fail to read the test spec output at { artifact_s3_url } " )
363
360
@@ -486,9 +483,6 @@ def main() -> None:
486
483
benchmark_config = read_benchmark_config (
487
484
artifact_s3_url , args .benchmark_configs
488
485
)
489
- print (benchmark_config )
490
-
491
- continue
492
486
493
487
if app_type == "ANDROID_APP" :
494
488
benchmark_results = extract_android_benchmark_results (
You can’t perform that action at this time.
0 commit comments