From b3222b9be994d39e9e5b28d8e06abeb36bbda6ca Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Thu, 24 Apr 2025 01:10:03 +0200 Subject: [PATCH] Update split_tests.py --- script/split_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/script/split_tests.py b/script/split_tests.py index 0018472e54e..5b2a8cc7a81 100755 --- a/script/split_tests.py +++ b/script/split_tests.py @@ -187,6 +187,7 @@ def collect_tests(path: Path) -> TestFolder: file_path, _, total_tests = line.partition(": ") if not path or not total_tests: print(f"Unexpected line: {line}") + print("all lines:\n", result.stdout) sys.exit(1) file = TestFile(int(total_tests), Path(file_path))