diff options
Diffstat (limited to 'test/discover_tests.py')
-rwxr-xr-x | test/discover_tests.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/discover_tests.py b/test/discover_tests.py index 0eaa149d0db..dbf23eff12f 100755 --- a/test/discover_tests.py +++ b/test/discover_tests.py @@ -4,7 +4,6 @@ import sys import os import unittest import importlib -import argparse def discover_tests(directory, callback): @@ -28,7 +27,11 @@ def discover_tests(directory, callback): continue if not issubclass(cls, unittest.TestCase): continue - if name == "VppTestCase" or name.startswith("Template"): + if ( + name == "VppTestCase" + or name == "VppAsfTestCase" + or name.startswith("Template") + ): continue for method in dir(cls): if not callable(getattr(cls, method)): |