Disable duplicate-inclides style check

This commit is contained in:
Mikhail f. Shiryaev 2024-03-20 17:50:40 +01:00
parent 070f7bee9b
commit 54fae360f0
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4
2 changed files with 6 additions and 5 deletions

View File

@ -6,10 +6,11 @@ cd /ClickHouse/utils/check-style || echo -e "failure\tRepo not found" > /test_ou
start_total=$(date +%s)
start=$(date +%s)
./check-duplicate-includes.sh |& tee /test_output/duplicate_includes_output.txt
runtime=$(($(date +%s)-start))
echo "Check duplicates. Done. $runtime seconds."
# We decided to have the regexp-based check disabled in favor of clang-tidy
# start=$(date +%s)
# ./check-duplicate-includes.sh |& tee /test_output/duplicate_includes_output.txt
# runtime=$(($(date +%s)-start))
# echo "Check duplicates. Done. $runtime seconds."
start=$(date +%s)
./check-style -n |& tee /test_output/style_output.txt

View File

@ -13,7 +13,7 @@ def process_result(result_folder):
description = ""
test_results = []
checks = (
"duplicate includes",
# "duplicate includes", # disabled in favor of clang-tidy
"shellcheck",
"style",
"pylint",