diff --git a/tests/pylint/runpylint.py b/tests/pylint/runpylint.py index 3e200f97..775a9524 100755 --- a/tests/pylint/runpylint.py +++ b/tests/pylint/runpylint.py @@ -26,6 +26,14 @@ class LoraxLintConfig(PocketLintConfig): retval.remove("pocketlint.checkers.markup") return retval + @property + def ignoreNames(self): + return { "bots", "rpmbuild", "tito" } + + @property + def extraArgs(self): + return ["--extension-pkg-whitelist=rpm"] + if __name__ == "__main__": conf = LoraxLintConfig() linter = PocketLinter(conf)