summaryrefslogtreecommitdiffstats
path: root/build-gluster-org/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'build-gluster-org/scripts')
-rw-r--r--build-gluster-org/scripts/python-lint.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-gluster-org/scripts/python-lint.sh b/build-gluster-org/scripts/python-lint.sh
index 74fb9e1..f7df7a1 100644
--- a/build-gluster-org/scripts/python-lint.sh
+++ b/build-gluster-org/scripts/python-lint.sh
@@ -14,11 +14,11 @@ python3 -m venv env
pip install -I flake8 pylint
# run flake8
-flake8 . >"$RESULT/flake8-check.txt"
+find . -path './env' -prune -o -name '*.py' -print | xargs flake8 > "$RESULT/flake8-check.txt"
FLAKE_COUNT="$(wc -l < $RESULT/flake8-check.txt)"
#run pylint
-find . -iname "*.py" | xargs pylint --output-format=text >"$RESULT/pylint-check.txt"
+find . -path './env' -print -o -name '*.py' | xargs pylint --output-format=text > "$RESULT/pylint-check.txt"
PYLINT_COUNT="$(egrep -wc 'R:|C:|W:|E:|F:' $RESULT/pylint-check.txt)"
#fail build if there's any pylint and flake8 related issues