diff options
| author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-04-20 18:03:39 +0200 |
|---|---|---|
| committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-04-20 21:58:08 +0200 |
| commit | 809eaee6d4e34ff4acc52562a8efcd04c41cbbc6 (patch) | |
| tree | 9707d834cc2548820cc676c4dc60fd4c4131f06c /tests/extensions/test_check_raise_docs.py | |
| parent | d4037bb23ad2488e849ad5e003a050c91cc0fce1 (diff) | |
| download | pylint-git-809eaee6d4e34ff4acc52562a8efcd04c41cbbc6.tar.gz | |
[tests lint] Disable all the too-many-public-methods warning
Test classes do not need to be reused and do not need a great API.
Diffstat (limited to 'tests/extensions/test_check_raise_docs.py')
| -rw-r--r-- | tests/extensions/test_check_raise_docs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/extensions/test_check_raise_docs.py b/tests/extensions/test_check_raise_docs.py index 010291d9a..dfd90aec2 100644 --- a/tests/extensions/test_check_raise_docs.py +++ b/tests/extensions/test_check_raise_docs.py @@ -10,6 +10,9 @@ """Unit tests for the raised exception documentation checking in the `DocstringChecker` in :mod:`pylint.extensions.check_docs` """ + +# pylint: disable=too-many-public-methods + import astroid from pylint.extensions.docparams import DocstringParameterChecker |
