From 67be42fa678df061ebe83510d42c859853cd4d62 Mon Sep 17 00:00:00 2001 From: Pradeep Chhetri Date: Wed, 24 May 2023 15:02:22 +0800 Subject: [PATCH] Enable pylint for all tests --- utils/check-style/check-style | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utils/check-style/check-style b/utils/check-style/check-style index 3a966daea41..620aec2fda2 100755 --- a/utils/check-style/check-style +++ b/utils/check-style/check-style @@ -152,8 +152,7 @@ find $ROOT_PATH/{src,base,programs,utils} -name '*.xml' | grep -vP $EXCLUDE_DIRS | xargs xmllint --noout --nonet -# FIXME: for now only clickhouse-test -pylint --rcfile=$ROOT_PATH/.pylintrc --persistent=no --score=n $ROOT_PATH/tests/clickhouse-test $ROOT_PATH/tests/ci/*.py +pylint --rcfile=$ROOT_PATH/.pylintrc --persistent=no --score=n $ROOT_PATH/tests/clickhouse-test $ROOT_PATH/tests/**/*.py find $ROOT_PATH -not -path $ROOT_PATH'/contrib*' \( -name '*.yaml' -or -name '*.yml' \) -type f | grep -vP $EXCLUDE_DIRS |