Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions pavelib/quality.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down