aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-10-19 16:30:59 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-10-19 17:30:47 +0200
commit06ee93a85bf9e6bf31948cfe8d36e790c76e453a (patch)
tree24b32c939b1876a571556e89fc7b3160a1289253
parentebeacfc2eca072e571bf0de0f7efc5587d2dd75b (diff)
Move pylint exceptions
It seems that build servers are not similar Change-Id: I2e7d49bd91b09591d4c6babbff2e4392fde649ef Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
-rw-r--r--xtesting/ci/tier_handler.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/xtesting/ci/tier_handler.py b/xtesting/ci/tier_handler.py
index fbf28f68..4b74e37c 100644
--- a/xtesting/ci/tier_handler.py
+++ b/xtesting/ci/tier_handler.py
@@ -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