From 841768393df696c34d8c166e523d1d86f79574e0 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 9 Feb 2021 22:39:05 +0100 Subject: Fix pylint issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Id6f0ce4c594d1f377fd2added3010de681855561 Signed-off-by: Cédric Ollivier --- xtesting/core/mts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xtesting/core/mts.py b/xtesting/core/mts.py index ec6766d2..3cfbea0d 100644 --- a/xtesting/core/mts.py +++ b/xtesting/core/mts.py @@ -239,7 +239,9 @@ class MTSLauncher(testcase.TestCase): f_stdout.write(line.decode("utf-8")) if six.PY3: try: + # pylint: disable=unexpected-keyword-arg process.wait(timeout=max_duration) + # pylint: disable=no-member except subprocess.TimeoutExpired: process.kill() self.__logger.info( -- cgit 1.2.3-korg