From a53bfc4ee6351bd5b59ab0908d12dba4a09e5495 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Sat, 30 Aug 2025 16:34:03 +0200 Subject: [PATCH] Add flush for better debugging in run_tests.py --- scripts/run_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index b606d27f3..5c36a5468 100755 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -194,7 +194,9 @@ def _execute(args_dict, env): env_copy["PPC_NUM_PROC"] = str(count) env_copy.setdefault("PPC_NUM_THREADS", "1") - print(f"Executing with {args_dict['running_type']} count: {count}") + print( + f"Executing with {args_dict['running_type']} count: {count}", flush=True + ) _execute(args_dict, env_copy) else: _execute(args_dict, os.environ.copy())