Commit d6b187d1 by David Baumgold

Update pylint to 1.4.0

parent 4a37648f
...@@ -42,8 +42,10 @@ def find_fixme(options): ...@@ -42,8 +42,10 @@ def find_fixme(options):
sh( sh(
"{pythonpath_prefix} pylint --disable R,C,W,E --enable=fixme " "{pythonpath_prefix} pylint --disable R,C,W,E --enable=fixme "
"-f parseable {apps} | tee {report_dir}/pylint_fixme.report".format( "--msg-template={msg_template} {apps} "
"| tee {report_dir}/pylint_fixme.report".format(
pythonpath_prefix=pythonpath_prefix, pythonpath_prefix=pythonpath_prefix,
msg_template='"{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}"',
apps=apps_list, apps=apps_list,
report_dir=report_dir report_dir=report_dir
) )
...@@ -97,10 +99,11 @@ def run_pylint(options): ...@@ -97,10 +99,11 @@ def run_pylint(options):
) )
sh( sh(
"{pythonpath_prefix} pylint {flags} -f parseable {apps} | " "{pythonpath_prefix} pylint {flags} --msg-template={msg_template} {apps} | "
"tee {report_dir}/pylint.report".format( "tee {report_dir}/pylint.report".format(
pythonpath_prefix=pythonpath_prefix, pythonpath_prefix=pythonpath_prefix,
flags=" ".join(flags), flags=" ".join(flags),
msg_template='"{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}"',
apps=apps_list, apps=apps_list,
report_dir=report_dir report_dir=report_dir
) )
......
...@@ -129,7 +129,7 @@ nose-exclude ...@@ -129,7 +129,7 @@ nose-exclude
nose-ignore-docstring nose-ignore-docstring
nosexcover==1.0.7 nosexcover==1.0.7
pep8==1.5.7 pep8==1.5.7
pylint==0.28 pylint==1.4.0
python-subunit==0.0.16 python-subunit==0.0.16
rednose==0.3 rednose==0.3
selenium==2.42.1 selenium==2.42.1
......
...@@ -56,7 +56,7 @@ set -e ...@@ -56,7 +56,7 @@ set -e
############################################################################### ###############################################################################
# Violations thresholds for failing the build # Violations thresholds for failing the build
PYLINT_THRESHOLD=4600 PYLINT_THRESHOLD=5800
PEP8_THRESHOLD=0 PEP8_THRESHOLD=0
source $HOME/jenkins_env source $HOME/jenkins_env
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment