add disable fixme to pylintrc

This commit is contained in:
Christine Lytwynec
2014-12-08 09:19:19 -05:00
parent c45e34bf2e
commit 25d76da4ef
2 changed files with 4 additions and 3 deletions

View File

@@ -195,14 +195,12 @@ def run_quality(options):
sh(
"{pythonpath_prefix} diff-quality --violations=pylint "
"{pylint_reports} {percentage_string} {compare_branch_string} "
"--html-report {dquality_dir}/diff_quality_pylint.html "
"--options='{pylint_options}'".format(
"--html-report {dquality_dir}/diff_quality_pylint.html ".format(
pythonpath_prefix=pythonpath_prefix,
pylint_reports=pylint_reports,
percentage_string=percentage_string,
compare_branch_string=compare_branch_string,
dquality_dir=dquality_dir,
pylint_options="--disable=fixme",
)
)
except BuildFailure, error_message:

View File

@@ -47,6 +47,9 @@ disable=
# W0232: Class has no __init__ method
W0232,
# Disable 'fixme' so that quality builds don't fail due to them
W0511,
# Might use these when the code is in better shape
# C0302: Too many lines in module
# R0201: Method could be a function