diff --git a/tests/config/test_configtypes.py b/tests/config/test_configtypes.py index 7b356e5aa..0b6ea21b7 100644 --- a/tests/config/test_configtypes.py +++ b/tests/config/test_configtypes.py @@ -328,6 +328,9 @@ class TestBool: """Test Bool.""" + # https://bitbucket.org/logilab/pylint/issue/511/ + # pylint: disable=undefined-variable + TESTS = {True: ['1', 'yes', 'YES', 'true', 'TrUe', 'on'], False: ['0', 'no', 'NO', 'false', 'FaLsE', 'off']}