Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/test_pylint.sh
blob: 0ba2f83949abfcd80873311075b2b457e0a1a536 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/sh

# test_pylint.sh - run pylint on the source to find errors
#
# Copyright (C) 2013 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA

set -e

# find source directory
srcdir="${srcdir-`dirname "$0"`}"
top_srcdir="${top_srcdir-${srcdir}/..}"

# if Pylint is missing, ignore
if ! pylint --version > /dev/null 2> /dev/null
then
  echo "Pylint not found"
  exit 77
fi

# get rcfile absolute path
absdir="$( (cd "$srcdir"; pwd) )"
rcfile="$absdir/pylint.rc"

# get the disable option from the configuration file
# (this somehow doesn't work in pylint)
disable=$(sed -n 's/^disable=\(.*\)$/\1/p' "$rcfile")

# run Pylint in both pynslcd and utils directories
( cd "$top_srcdir/pynslcd" ;
  pylint --errors-only --rcfile "$rcfile" --disable "$disable" *.py)
( cd "$top_srcdir/utils" ;
  pylint --errors-only --rcfile "$rcfile" --disable "$disable" *.py)

# Pylint has the following exit codes:
#  0 if everything went fine
#  1 if a fatal message was issued
#  2 if an error message was issued
#  4 if a warning message was issued
#  8 if a refactor message was issued
#  16 if a convention message was issued
#  32 on usage error
# (exit codes are ORed)