From 1c5610bf65a28be927061f7a1c802682f28b3b64 Mon Sep 17 00:00:00 2001 From: "Mikhail f. Shiryaev" Date: Thu, 1 Dec 2022 14:06:17 +0100 Subject: [PATCH] Changes during the review --- docker/test/style/process_style_check_result.py | 4 ++-- docker/test/style/run.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/test/style/process_style_check_result.py b/docker/test/style/process_style_check_result.py index d914ceffb86..6dc3d05d051 100755 --- a/docker/test/style/process_style_check_result.py +++ b/docker/test/style/process_style_check_result.py @@ -11,7 +11,7 @@ def process_result(result_folder): description = "" test_results = [] checks = ( - "header duplicates", + "duplicate includes", "shellcheck", "style", "black", @@ -19,7 +19,7 @@ def process_result(result_folder): "typos", "whitespaces", "workflows", - "doc typos", + "docs spelling", ) for name in checks: diff --git a/docker/test/style/run.sh b/docker/test/style/run.sh index 911536ed03b..80911bf8627 100755 --- a/docker/test/style/run.sh +++ b/docker/test/style/run.sh @@ -4,7 +4,7 @@ cd /ClickHouse/utils/check-style || echo -e "failure\tRepo not found" > /test_output/check_status.tsv echo "Check duplicates" | ts -./check-duplicate-includes.sh |& tee /test_output/header_duplicates_output.txt +./check-duplicate-includes.sh |& tee /test_output/duplicate_includes_output.txt echo "Check style" | ts ./check-style -n |& tee /test_output/style_output.txt echo "Check python formatting with black" | ts @@ -14,7 +14,7 @@ echo "Check python type hinting with mypy" | ts echo "Check typos" | ts ./check-typos |& tee /test_output/typos_output.txt echo "Check docs spelling" | ts -./check-doc-aspell |& tee /test_output/doc_typos_output.txt +./check-doc-aspell |& tee /test_output/docs_spelling_output.txt echo "Check whitespaces" | ts ./check-whitespaces -n |& tee /test_output/whitespaces_output.txt echo "Check workflows" | ts