summaryrefslogtreecommitdiff
path: root/tests/extensions/test_check_raise_docs.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-20 18:03:39 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-20 21:58:08 +0200
commit809eaee6d4e34ff4acc52562a8efcd04c41cbbc6 (patch)
tree9707d834cc2548820cc676c4dc60fd4c4131f06c /tests/extensions/test_check_raise_docs.py
parentd4037bb23ad2488e849ad5e003a050c91cc0fce1 (diff)
downloadpylint-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.py3
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