Update create_pr_results_comment.py (#382)
Browse files
scripts/create_pr_results_comment.py
CHANGED
|
@@ -302,8 +302,12 @@ def generate_markdown_content(
|
|
| 302 |
|
| 303 |
if all_training_datasets:
|
| 304 |
datasets_list = ", ".join(f"`{d}`" for d in sorted(all_training_datasets))
|
| 305 |
-
parts.
|
| 306 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 307 |
|
| 308 |
parts.extend(["", "---", ""])
|
| 309 |
|
|
|
|
| 302 |
|
| 303 |
if all_training_datasets:
|
| 304 |
datasets_list = ", ".join(f"`{d}`" for d in sorted(all_training_datasets))
|
| 305 |
+
parts.extend([
|
| 306 |
+
"", # need blank line before to not merge with table
|
| 307 |
+
f"**Training datasets:** {datasets_list}",
|
| 308 |
+
"",
|
| 309 |
+
"",
|
| 310 |
+
])
|
| 311 |
|
| 312 |
parts.extend(["", "---", ""])
|
| 313 |
|