Commit 58fd0918 by David Baumgold

Disable TODO comments in `paver quality` only

parent 24ad0c31
...@@ -30,7 +30,9 @@ def run_pylint(options): ...@@ -30,7 +30,9 @@ def run_pylint(options):
# This makes the folder if it doesn't already exist. # This makes the folder if it doesn't already exist.
report_dir = (Env.REPORT_DIR / system).makedirs_p() report_dir = (Env.REPORT_DIR / system).makedirs_p()
flags = '-E' if errors else '' flags = ["--disable=fixme"]
if errors:
flags.append("--errors-only")
apps = [system] apps = [system]
...@@ -51,7 +53,7 @@ def run_pylint(options): ...@@ -51,7 +53,7 @@ def run_pylint(options):
"{pythonpath_prefix} pylint {flags} -f parseable {apps} | " "{pythonpath_prefix} pylint {flags} -f parseable {apps} | "
"tee {report_dir}/pylint.report".format( "tee {report_dir}/pylint.report".format(
pythonpath_prefix=pythonpath_prefix, pythonpath_prefix=pythonpath_prefix,
flags=flags, flags=" ".join(flags),
apps=apps_list, apps=apps_list,
report_dir=report_dir report_dir=report_dir
) )
......
...@@ -41,8 +41,7 @@ disable= ...@@ -41,8 +41,7 @@ disable=
# W0142: Used * or ** magic # W0142: Used * or ** magic
# R0921: Abstract class not referenced # R0921: Abstract class not referenced
# R0922: Abstract class is only referenced 1 times # R0922: Abstract class is only referenced 1 times
# W0511: TODO comments I0011,C0301,W0141,W0142,R0921,R0922,
I0011,C0301,W0141,W0142,R0921,R0922,W0511,
# Django makes classes that trigger these # Django makes classes that trigger these
# W0232: Class has no __init__ method # W0232: Class has no __init__ method
......
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