There was an error while loading. Please reload this page.
1 parent d119c47 commit fe6a60aCopy full SHA for fe6a60a
1 file changed
scripts/update_lib/auto_mark.py
@@ -170,7 +170,7 @@ def _parse_error_details(test_results: TestResult, lines: list[str]) -> None:
170
# Collect lines until the next separator or end
171
while i < len(lines):
172
current = lines[i]
173
- if current.startswith("====="):
+ if current.startswith("=====") or current.startswith("-----"):
174
break
175
error_lines.append(current)
176
i += 1
0 commit comments