diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-17 20:32:32 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-03-17 21:14:30 +0100 |
commit | fc56d9d08b951adb1ca0353f43bb47213b8fb16d (patch) | |
tree | dc43dba6aff3b8b75162f6d2819503374db747a2 /tests/functional/e | |
parent | 11424700c42f235fd6bdcc8353f82a9d39960dd0 (diff) | |
download | pylint-git-fc56d9d08b951adb1ca0353f43bb47213b8fb16d.tar.gz |
Enable use-symbolic-message-instead in functional tests
Diffstat (limited to 'tests/functional/e')
-rw-r--r-- | tests/functional/e/e1101_9588_base_attr_aug_assign.py | 2 | ||||
-rw-r--r-- | tests/functional/e/external_classmethod_crash.py | 2 | ||||
-rw-r--r-- | tests/functional/e/external_classmethod_crash.txt | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/tests/functional/e/e1101_9588_base_attr_aug_assign.py b/tests/functional/e/e1101_9588_base_attr_aug_assign.py index 11472010c..7306840cb 100644 --- a/tests/functional/e/e1101_9588_base_attr_aug_assign.py +++ b/tests/functional/e/e1101_9588_base_attr_aug_assign.py @@ -1,4 +1,4 @@ -# pylint: disable=R0903, useless-object-inheritance +# pylint: disable=too-few-public-methods, useless-object-inheritance """ False positive case of E1101: diff --git a/tests/functional/e/external_classmethod_crash.py b/tests/functional/e/external_classmethod_crash.py index e9842a5e5..fd225a17b 100644 --- a/tests/functional/e/external_classmethod_crash.py +++ b/tests/functional/e/external_classmethod_crash.py @@ -1,4 +1,4 @@ -# pylint: disable=W0232,R0903,W0613, useless-object-inheritance +# pylint: disable=W0232,too-few-public-methods,W0613, useless-object-inheritance # [use-symbolic-message-instead,use-symbolic-message-instead] """tagging a function as a class method cause a crash when checking for signature overriding """ diff --git a/tests/functional/e/external_classmethod_crash.txt b/tests/functional/e/external_classmethod_crash.txt new file mode 100644 index 000000000..780ef6e6c --- /dev/null +++ b/tests/functional/e/external_classmethod_crash.txt @@ -0,0 +1,2 @@ +use-symbolic-message-instead:1:0::Id 'W0232' is used to disable 'no-init' message emission +use-symbolic-message-instead:1:0::Id 'W0613' is used to disable 'unused-argument' message emission |