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: