From 06ee93a85bf9e6bf31948cfe8d36e790c76e453a Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Fri, 19 Oct 2018 16:30:59 +0200 Subject: Move pylint exceptions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems that build servers are not similar Change-Id: I2e7d49bd91b09591d4c6babbff2e4392fde649ef Signed-off-by: Cédric Ollivier --- xtesting/ci/tier_handler.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'xtesting/ci') 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 -- cgit 1.2.3-korg