fix some pylint issues
[transportpce.git] / tests / transportpce_tests / 2.2.1 / test_tapi.py
index 9622da91b64f258a80e5f085190874a9b5657036..496a33e65d88d38f5eccd6a35b460f9e424cc340 100644 (file)
@@ -10,6 +10,9 @@
 
 # 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
@@ -54,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")