ipsec: VPP-1316 calculate IP/TCP/UDP inner checksums
[vpp.git] / test / discover_tests.py
index eea5941..99016e2 100755 (executable)
@@ -30,7 +30,7 @@ def discover_tests(directory, callback):
                 continue
             if not issubclass(cls, unittest.TestCase):
                 continue
-            if name == "VppTestCase":
+            if name == "VppTestCase" or name.startswith("Template"):
                 continue
             for method in dir(cls):
                 if not callable(getattr(cls, method)):