From 7fcc234454dba71f601ae208885928c801058839 Mon Sep 17 00:00:00 2001 From: Deepshikha khandelwal Date: Wed, 14 Nov 2018 15:22:25 +0530 Subject: Fixes the bug in python-lint job Change-Id: I28540b0c27db9afc710e7d4f0511866a13b97f91 --- build-gluster-org/scripts/python-lint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build-gluster-org') diff --git a/build-gluster-org/scripts/python-lint.sh b/build-gluster-org/scripts/python-lint.sh index b70ae0f..74fb9e1 100644 --- a/build-gluster-org/scripts/python-lint.sh +++ b/build-gluster-org/scripts/python-lint.sh @@ -15,11 +15,11 @@ pip install -I flake8 pylint # run flake8 flake8 . >"$RESULT/flake8-check.txt" -FLAKE_COUNT="$(wc -l < '$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" -PYLINT_COUNT="$(egrep -wc 'R:|C:|W:|E:|F:' 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 if [[ "$FLAKE_COUNT" -gt 0 && "$PYLINT_COUNT" -gt 0 ]]; then -- cgit