From 07cbb427a8b301527fef0d70cf6d0b8de083b462 Mon Sep 17 00:00:00 2001 From: alesapin Date: Fri, 3 Jul 2020 14:05:27 +0300 Subject: [PATCH] More verbose message about skip --- tests/clickhouse-test | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/clickhouse-test b/tests/clickhouse-test index 71e93e7b1bb..0e4e20dfe21 100755 --- a/tests/clickhouse-test +++ b/tests/clickhouse-test @@ -690,6 +690,10 @@ def collect_tests_to_skip(skip_list_path, build_flags): skip_dict = json.load(skip_list_file) for build_flag in build_flags: result |= set(skip_dict[build_flag]) + + if len(result) > 0: + print("Found file with skip-list {}, {} test will be skipped".format(skip_list_path, len(result))) + return result if __name__ == '__main__':