From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id 662F010EA95 for ; Thu, 13 Apr 2023 09:22:31 +0000 (UTC) Received: from linux.intel.com (maurocar-mobl2.ger.corp.intel.com [10.252.29.155]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by linux.intel.com (Postfix) with ESMTPS id 14B80580D2E for ; Thu, 13 Apr 2023 02:22:06 -0700 (PDT) From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Thu, 13 Apr 2023 11:21:56 +0200 Message-Id: <20230413092159.146658-2-mauro.chehab@linux.intel.com> In-Reply-To: <20230413092159.146658-1-mauro.chehab@linux.intel.com> References: <20230413092159.146658-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v3 1/4] scripts/igt_doc.py: cleanup some pylint warnings List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Mauro Carvalho Chehab Ensure that pylint won't report any issues on igt_doc.py. Signed-off-by: Mauro Carvalho Chehab --- scripts/igt_doc.py | 1 + scripts/test_list.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/igt_doc.py b/scripts/igt_doc.py index 547cb81bce02..8fa5af15033e 100755 --- a/scripts/igt_doc.py +++ b/scripts/igt_doc.py @@ -11,6 +11,7 @@ """Maintain test plan and test implementation documentation on IGT.""" import argparse +import sys from test_list import TestList diff --git a/scripts/test_list.py b/scripts/test_list.py index 6af1914822a3..d1b9a2794967 100755 --- a/scripts/test_list.py +++ b/scripts/test_list.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# pylint: disable=C0301,R0902,R0914,R0912,R0915,R1702,C0302 +# pylint: disable=C0301,R0902,R0914,R0912,R0913,R0915,R1702,C0302 # SPDX-License-Identifier: (GPL-2.0 OR MIT) ## Copyright (C) 2023 Intel Corporation ## @@ -394,7 +394,7 @@ class TestList: for subtest in self.doc[test]["subtest"].keys(): summary = test_name if self.doc[test]["subtest"][subtest]["Summary"] != '': - summary += '@' + self.doc[test]["subtest"][subtest]["Summary"] + summary += '@' + self.doc[test]["subtest"][subtest]["Summary"] if not summary: continue -- 2.39.2