Skip to content

Commit 50e9c89

Browse files
authored
Merge pull request #31 from logic-star-ai/fix/sympy
Implement suggested Fix #26
2 parents 8b30a89 + ecb9e60 commit 50e9c89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/log_parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def parse_log_seaborn(log: str) -> dict[str, str]:
154154
return test_status_map
155155

156156
sympy_error_pattern = re.compile(r"_\n(_*) (.*)\.py::?(.*) (_*)", flags=re.MULTILINE)
157-
sympy_test_pattern = re.compile(r"test_([^\s]*)\s+(E|F|ok)")
157+
sympy_test_pattern = re.compile(r"test_([^\s]*)\s+(E|F|ok)\s")
158158
sympy_status_map = {
159159
"E": TestStatus.ERROR.value,
160160
"F": TestStatus.FAILED.value,

0 commit comments

Comments
 (0)