diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2014-07-12 12:08:41 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2014-07-12 12:08:41 +0300 |
commit | d721022c01ecffe50c56e44ade4b61824a501af0 (patch) | |
tree | 69e4dcb18248c30170688e926afd7c11abd854d5 /testutils.py | |
parent | 5814625d4cae7ef202860e6b732a1951505f3fd2 (diff) | |
download | pylint-git-d721022c01ecffe50c56e44ade4b61824a501af0.tar.gz |
Don't emit 'no-name-in-module' for ignored modules. Closes issue #223.
Diffstat (limited to 'testutils.py')
-rw-r--r-- | testutils.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testutils.py b/testutils.py index fb8170a47..daf747781 100644 --- a/testutils.py +++ b/testutils.py @@ -152,6 +152,9 @@ class UnittestLinter(object): self.stats[name] = value return self.stats + @property + def options_providers(self): + return linter.options_providers def set_config(**kwargs): """Decorator for setting config values on a checker.""" |