mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
16 lines
490 B
Bash
Executable File
16 lines
490 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
|
|
LC_ALL="en_US.UTF-8"
|
|
ROOT_PATH=$(git rev-parse --show-toplevel)
|
|
|
|
function xargs-pylint {
|
|
# $1 is number maximum arguments per pylint process
|
|
sort | awk '$2=="text/x-script.python" {print $1}' | \
|
|
xargs -P "$(nproc)" -n "$1" pylint --rcfile="$ROOT_PATH/pyproject.toml" --persistent=no --score=n
|
|
}
|
|
|
|
# exclude ci unittest scripts from check: test_*
|
|
find "$ROOT_PATH/tests" -maxdepth 2 -type f -exec file -F' ' --mime-type {} + | grep -v "/test_" | xargs-pylint 50
|
|
|