diff -r 91796f408540 -r b8b47f9b5e56 tests/tools/check_source.sh --- a/tests/tools/check_source.sh Fri Sep 22 10:54:42 2017 +0300 +++ b/tests/tools/check_source.sh Fri Sep 22 10:57:57 2017 +0300 @@ -201,14 +201,13 @@ disable=$disable,W0511 # fixme enable= - # enable=$enable,W0403 # relative import + enable=$enable,E1601 # print statement used + # enable=$enable,W0403 # relative import + options= - options="$options --additional-builtins=_" - options="$options -r no" + options="$options --rcfile=.pylint" # options="$options --py3k" # report errors for Python 3 porting - # options="$options -E" # report only major errors - options="$options --output-format=parseable" if [ -n "$enable" ]; then options="$options --disable=all" @@ -216,9 +215,9 @@ else options="$options --disable=$disable" fi - echo $options - - find ./ -name '*.py' | grep -v '/build/' | xargs pylint $options + # echo $options + + find ./ -name '*.py' | grep -v '/build/' | xargs pylint $options if [ $? -ne 0 ]; then set_exit_error fi @@ -230,7 +229,7 @@ pep8_checks_default # pep8_checks_selected # flake8_checks - # pylint_checks + pylint_checks exit $exit_code }