Private
Public Access
0
0

fix(run_tests_batched): filter xdist scheduling queue output (test paths without status prefix)

This commit is contained in:
2026-06-08 01:51:07 -04:00
parent a2d16541d0
commit 272b7841ae
+2
View File
@@ -106,6 +106,8 @@ def _format_pytest_line(line: str) -> str | None:
for sub in _NOISE_SUBSTRINGS:
if sub in stripped:
return None
if stripped.startswith(("tests/", "tests\\")) and "::" in stripped and len(stripped.split()) == 1:
return None
if " PASSED " in stripped and "[gw" in stripped:
return _c(stripped, _C.GREEN)
if " FAILED " in stripped and "[gw" in stripped: