From 3aac31482c68ec744d65c9e9dfd9a0f51d4ab682 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Mon, 30 Sep 2019 18:11:46 -0700 Subject: [PATCH] test: Disable pylint subprocess check check The return value for subprocess is already being checked, no need to use check=True. --- test/composertest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/composertest.py b/test/composertest.py index 3c577772..203b2107 100644 --- a/test/composertest.py +++ b/test/composertest.py @@ -11,6 +11,7 @@ import unittest sys.path.append(os.path.join(os.path.dirname(__file__), "../bots/machine")) import testvm # pylint: disable=import-error +#pylint: disable=subprocess-run-check def print_exception(etype, value, tb): # only include relevant lines