We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bfb2bc commit 2bc5b01Copy full SHA for 2bc5b01
test/run-tests.py
@@ -635,15 +635,6 @@ def silent(*_args, **_kwargs):
635
f.write("|---------------|------------|--------------|\n")
636
for r in results:
637
f.write(f"| {r['godot_version']:13} | {r['status']:10} | {r['duration_seconds']:12} |\n")
638
-
639
- # Simple ASCII bar chart of current run durations (max bar = 60 chars)
640
- if results:
641
- f.write("\n### Duration (seconds)\n")
642
- max_dur = max(r["duration_seconds"] for r in results)
643
- for r in results:
644
- bar_len = int(60 * r["duration_seconds"] / max_dur) if max_dur > 0 else 0
645
- bar = "█" * bar_len
646
- f.write(f"{r['godot_version']:13} |{bar} {r['duration_seconds']}s\n")
647
except Exception:
648
pass # ignore summary write failures
649
0 commit comments