X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fdiscover_tests.py;h=99016e2845ee1f0a3e60b5310b01c614852a3007;hb=31da2e30317bc1fcb4586e1dc0d560600d9b29d3;hp=eea594107b67449eb43f36a69f81bc949fadaf80;hpb=2a8d02df15e71881754bab0bb16b85ccd65f8f74;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)):