Skip to content

Commit fc6b4a5

Browse files
committed
fix: center table columns in markdown summary
Made-with: Cursor
1 parent 6e81cc3 commit fc6b4a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci_eval_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def generate_markdown(results: Dict[str, Any]) -> str:
329329
f"### Overall: {overall_icon} {overall_word}",
330330
"",
331331
"| Metric | Score | Threshold | Result |",
332-
"|--------|------:|----------:|--------|",
332+
"|:------:|:-----:|:---------:|:------:|",
333333
])
334334

335335
for m in results["metrics"]:
@@ -373,7 +373,7 @@ def generate_markdown(results: Dict[str, Any]) -> str:
373373
lines.extend([
374374
"",
375375
"| Metric | Score | Result | Explanation |",
376-
"|--------|------:|--------|-------------|",
376+
"|:------:|:-----:|:------:|:------------|",
377377
])
378378
for metric_name, score_data in sample_scores.items():
379379
score_val = score_data.get("score")

0 commit comments

Comments
 (0)