Skip to content

Commit fe6a60a

Browse files
morealyouknowone
authored andcommitted
Fix error lines extraction
1 parent d119c47 commit fe6a60a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/update_lib/auto_mark.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def _parse_error_details(test_results: TestResult, lines: list[str]) -> None:
170170
# Collect lines until the next separator or end
171171
while i < len(lines):
172172
current = lines[i]
173-
if current.startswith("====="):
173+
if current.startswith("=====") or current.startswith("-----"):
174174
break
175175
error_lines.append(current)
176176
i += 1

0 commit comments

Comments
 (0)