diff options
Diffstat (limited to 'test/discover_tests.py')
-rwxr-xr-x | test/discover_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/discover_tests.py b/test/discover_tests.py index 99016e2845e..eea594107b6 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" or name.startswith("Template"): + if name == "VppTestCase": continue for method in dir(cls): if not callable(getattr(cls, method)): |