From 272b7841aec9d80c0aee84583118c523c9c4575f Mon Sep 17 00:00:00 2001 From: Ed_ Date: Mon, 8 Jun 2026 01:51:07 -0400 Subject: [PATCH] fix(run_tests_batched): filter xdist scheduling queue output (test paths without status prefix) --- scripts/run_tests_batched.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run_tests_batched.py b/scripts/run_tests_batched.py index 7cc26a55..41d81ce3 100644 --- a/scripts/run_tests_batched.py +++ b/scripts/run_tests_batched.py @@ -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: