fix some pylint issues
[transportpce.git] / tests / transportpce_tests / 2.2.1 / test_tapi.py
index 01c99fb8835ef130872f93b7ee4a5c896310ae83..496a33e65d88d38f5eccd6a35b460f9e424cc340 100644 (file)
@@ -7,6 +7,13 @@
 # which accompanies this distribution, and is available at
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
+
+# pylint: disable=no-member
+# pylint: disable=too-many-public-methods
+# some pylint false positives specific to tapi test
+# pylint: disable=unsubscriptable-object
+# pylint: disable=unsupported-assignment-operation
+
 import os
 import sys
 import time
@@ -50,6 +57,7 @@ class TransportTapitesting(unittest.TestCase):
 
     @classmethod
     def tearDownClass(cls):
+        # pylint: disable=not-an-iterable
         for process in cls.processes:
             test_utils.shutdown_process(process)
         print("all processes killed")