summaryrefslogtreecommitdiffstats
path: root/build-gluster-org/scripts/python-lint.sh
blob: 772b6ba956213d970b0e676419c3c4ee80ad407c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash

RESULT="$WORKSPACE/python-lint"
mkdir $RESULT

./autogen.sh
./configure --disable-bd-xlator --enable-debug --enable-gnfs --silent

# run flake8
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"
PYLINT_COUNT="$(egrep -wc 'R:|C:|W:|E:|F:' pylint-check.txt)"

#fail build if there's any pylint and flake8 related issues
if [[ "$FLAKE_COUNT" -gt 0  && "$PYLINT_COUNT" -gt 0 ]]; then
  echo ""
  echo "========================================================="
  echo "              Result of python linter"
  echo "         Number of flake8 issues: ${FLAKE_COUNT}"
  echo "         Number of pylint issues: ${PYLINT_COUNT}"
  echo "========================================================="
  exit 1
fi