mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
ci: add pylint as part of CI
add pylint to catch static issues of python files in the repo. User can now run make lint-py for pylint check on python files. Signed-off-by: Yug Gupta <ygupta@redhat.com>
This commit is contained in:
parent
6ea163af21
commit
306d5b1da0
@ -74,8 +74,12 @@ jobs:
|
|||||||
# yamllint disable rule:line-length
|
# yamllint disable rule:line-length
|
||||||
- mkdir -p /opt/commitlint && pushd /opt/commitlint
|
- mkdir -p /opt/commitlint && pushd /opt/commitlint
|
||||||
&& npm init -y && npm install --save-dev @commitlint/travis-cli && popd
|
&& npm init -y && npm install --save-dev @commitlint/travis-cli && popd
|
||||||
# yamllint enable rule:line-length
|
|
||||||
- export PATH=/opt/commitlint/node_modules/.bin:$PATH
|
- export PATH=/opt/commitlint/node_modules/.bin:$PATH
|
||||||
|
# install pylint and prettytable.
|
||||||
|
# target python script requires python3 dependencies.
|
||||||
|
- sudo apt install python3-pip python3-prettytable python3-setuptools python3-wheel -y
|
||||||
|
- pip3 install pylint
|
||||||
|
# yamllint enable rule:line-length
|
||||||
script:
|
script:
|
||||||
- commitlint-travis
|
- commitlint-travis
|
||||||
- make go-lint
|
- make go-lint
|
||||||
|
3
Makefile
3
Makefile
@ -96,6 +96,9 @@ lint-yaml:
|
|||||||
lint-helm:
|
lint-helm:
|
||||||
./scripts/lint-extras.sh lint-helm
|
./scripts/lint-extras.sh lint-helm
|
||||||
|
|
||||||
|
lint-py:
|
||||||
|
./scripts/lint-extras.sh lint-py
|
||||||
|
|
||||||
gosec:
|
gosec:
|
||||||
./scripts/gosec.sh
|
./scripts/gosec.sh
|
||||||
|
|
||||||
|
@ -31,6 +31,8 @@ RUN source /build.env \
|
|||||||
ShellCheck \
|
ShellCheck \
|
||||||
yamllint \
|
yamllint \
|
||||||
npm \
|
npm \
|
||||||
|
python3-prettytable \
|
||||||
|
pylint \
|
||||||
&& dnf -y update \
|
&& dnf -y update \
|
||||||
&& dnf -y clean all \
|
&& dnf -y clean all \
|
||||||
&& gem install mdl \
|
&& gem install mdl \
|
||||||
|
@ -59,6 +59,11 @@ function lint_helm() {
|
|||||||
run_check '' helm lint --namespace=test charts/*
|
run_check '' helm lint --namespace=test charts/*
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function lint_py() {
|
||||||
|
# Install via: sudo apt-get install python3-pylint
|
||||||
|
run_check '.*\.py' pylint --score n --output-format=colorized
|
||||||
|
}
|
||||||
|
|
||||||
function lint_all() {
|
function lint_all() {
|
||||||
# runs all checks
|
# runs all checks
|
||||||
all_required=1
|
all_required=1
|
||||||
@ -66,6 +71,7 @@ function lint_all() {
|
|||||||
lint_yaml
|
lint_yaml
|
||||||
lint_markdown
|
lint_markdown
|
||||||
lint_helm
|
lint_helm
|
||||||
|
lint_py
|
||||||
}
|
}
|
||||||
case "${1:-}" in
|
case "${1:-}" in
|
||||||
lint-shell)
|
lint-shell)
|
||||||
@ -80,6 +86,9 @@ lint-markdown)
|
|||||||
lint-helm)
|
lint-helm)
|
||||||
lint_helm
|
lint_helm
|
||||||
;;
|
;;
|
||||||
|
lint-py)
|
||||||
|
lint_py
|
||||||
|
;;
|
||||||
lint-all)
|
lint-all)
|
||||||
lint_all
|
lint_all
|
||||||
;;
|
;;
|
||||||
@ -90,6 +99,7 @@ Available Commands:
|
|||||||
lint-yaml Lint yaml files
|
lint-yaml Lint yaml files
|
||||||
lint-markdown Lint markdown files
|
lint-markdown Lint markdown files
|
||||||
lint-helm Lint helm charts
|
lint-helm Lint helm charts
|
||||||
|
lint-py Lint python files
|
||||||
lint-all Run lint on all non-go files
|
lint-all Run lint on all non-go files
|
||||||
" >&2
|
" >&2
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user