Changes during the review

This commit is contained in:
Mikhail f. Shiryaev 2022-12-01 14:06:17 +01:00
parent fe8107e95f
commit 1c5610bf65
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4
2 changed files with 4 additions and 4 deletions

View File

@ -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:

View File

@ -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