Move pylint exceptions 79/63779/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Fri, 19 Oct 2018 14:30:59 +0000 (16:30 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Fri, 19 Oct 2018 15:30:47 +0000 (17:30 +0200)
It seems that build servers are not similar

Change-Id: I2e7d49bd91b09591d4c6babbff2e4392fde649ef
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
xtesting/ci/tier_handler.py

index fbf28f6..4b74e37 100644 (file)
@@ -7,8 +7,9 @@
 # which accompanies this distribution, and is available at
 # http://www.apache.org/licenses/LICENSE-2.0
 
+# pylint: disable=missing-docstring,too-many-instance-attributes
+
 """Tier and TestCase classes to wrap the testcases config file"""
-# pylint: disable=missing-docstring
 
 import textwrap
 
@@ -99,7 +100,7 @@ class TestCase(object):
 
     def __init__(self, name, enabled, skipped, criteria, blocking,
                  description="", project=""):
-        # pylint: disable=too-many-arguments,too-many-instance-attributes
+        # pylint: disable=too-many-arguments
         self.name = name
         self.enabled = enabled
         self.skipped = skipped