tests: Temporarily work around rpm and pylint issues

See https://bugzilla.redhat.com/show_bug.cgi?id=1739167

Something in rpm changed and pylint isn't able to find the rpm
constants.
This commit is contained in:
Brian C. Lane 2019-08-08 09:57:57 -07:00
parent 1e88a99443
commit 0935a10a0b
1 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,8 @@ class LoraxLintConfig(PocketLintConfig):
self.falsePositives = [ FalsePositive(r"Module 'pylorax' has no 'version' member"),
FalsePositive(r"Catching too general exception Exception"),
FalsePositive(r"Module 'composer' has no 'version' member"),
# See https://bugzilla.redhat.com/show_bug.cgi?id=1739167
FalsePositive(r"Module 'rpm' has no '.*' member"),
]
@property