X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fdiscover_tests.py;h=99016e2845ee1f0a3e60b5310b01c614852a3007;hb=a98346f664aae148d26a8e158008b773d73db96f;hp=eea594107b67449eb43f36a69f81bc949fadaf80;hpb=56ba844d6a8b8f58b18fe51bf22707b0c37d3a87;p=vpp.git diff --git a/test/discover_tests.py b/test/discover_tests.py index eea594107b6..99016e2845e 100755 --- a/test/discover_tests.py +++ b/test/discover_tests.py @@ -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)):