From 61c4ecccc1df222b153236518c9be0ac3091f94a Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 16 Dec 2014 14:45:37 +0100 Subject: Run pylint on tests Drop support for pylint < 1.0 Enable ignoring unknown attributes on modules (both nose and pytest use advanced techniques, support for which only made it to pylint recently) Fix some bugs revealed by pylint Do minor refactoring or add pylint:disable directives where the linter complains. Reviewed-By: Tomas Babej --- ipatests/test_ipalib/test_backend.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ipatests/test_ipalib/test_backend.py') diff --git a/ipatests/test_ipalib/test_backend.py b/ipatests/test_ipalib/test_backend.py index 3ebed4bba..c69757cb3 100644 --- a/ipatests/test_ipalib/test_backend.py +++ b/ipatests/test_ipalib/test_backend.py @@ -21,6 +21,10 @@ Test the `ipalib.backend` module. """ +# FIXME: Pylint errors +# pylint: disable=no-member +# pylint: disable=maybe-no-member + import threading from ipatests.util import ClassChecker, raises, create_test_api from ipatests.data import unicode_str -- cgit