From 897d51b6e707945d3c2186911cdeff1f6ac9be2b Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 18 Jan 2021 14:38:31 +0300 Subject: [PATCH] Usability improvement of clickhouse-test --- tests/clickhouse-test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/clickhouse-test b/tests/clickhouse-test index da7d055f250..e095339ec76 100755 --- a/tests/clickhouse-test +++ b/tests/clickhouse-test @@ -293,6 +293,8 @@ def run_tests_array(all_tests_with_params): try: sys.stdout.flush() sys.stdout.write("{0:72}".format(name + ": ")) + # This flush is needed so you can see the test name of the long running test before it will finish. + sys.stdout.flush() if args.skip and any(s in name for s in args.skip): print(MSG_SKIPPED + " - skip")