diff options
author | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2013-03-26 17:18:31 -0400 |
---|---|---|
committer | Chris St. Pierre <chris.a.st.pierre@gmail.com> | 2013-03-26 17:19:02 -0400 |
commit | f6b458324f0be89f48229d4d1b5f3be9ae047497 (patch) | |
tree | 240e1ca1f6ef49dfd7bfbe9e2902a44ad42ef8ab /testsuite | |
parent | 7ad5c9c34a92080a5c426f9498ac4d09b615ec35 (diff) | |
download | bcfg2-f6b458324f0be89f48229d4d1b5f3be9ae047497.tar.gz bcfg2-f6b458324f0be89f48229d4d1b5f3be9ae047497.tar.bz2 bcfg2-f6b458324f0be89f48229d4d1b5f3be9ae047497.zip |
testsuite: can't disable pylint R0924, since it doesn't exist on older pylint and pylint barfs
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/pylintrc.conf | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/testsuite/pylintrc.conf b/testsuite/pylintrc.conf index 15f8ae23c..14ccd1d23 100644 --- a/testsuite/pylintrc.conf +++ b/testsuite/pylintrc.conf @@ -33,7 +33,7 @@ load-plugins=ext.exception_messages # can either give multiple identifier separated by comma (,) or put this option # multiple time (only on the command line, not in the configuration file where # it should appear only once). -disable=F0401,W0142,W0511,W0603,W1201,R0201,R0801,R0901,R0902,R0903,R0904,R0921,R0922,R0924,C0302,I0011,E0100,E0101,E0102,E0106 +disable=F0401,W0142,W0511,W0603,W1201,R0201,R0801,R0901,R0902,R0903,R0904,R0921,R0922,C0302,I0011,E0100,E0101,E0102,E0106 # Some of these are disabled because they warn about things we _want_: # # * W0142: Used * or ** magic @@ -41,12 +41,9 @@ disable=F0401,W0142,W0511,W0603,W1201,R0201,R0801,R0901,R0902,R0903,R0904,R0921, # * I0011: Locally disabling a pylint message # * R0921: Abstract class not referenced # * R0922: Abstract class is only referenced a small number of times -# * R0924: Badly implemented Container # # We have several modules, e.g., Bcfg2.Server.Plugin.interfaces, that # only declare abstract classes, which makes R0921 and R0922 useless. -# We also have several container objects that are immutable, which -# R0924 doesn't like. # Some of these are disabled because they just aren't that useful: # |