X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fdiscover_tests.py;h=dbf23eff12f8788e7dbadde068e57c3ed13c6c46;hb=8800f732f868bf54da8adba05e38bd2477895ca5;hp=0eaa149d0db2fd41cffbaa414756c813c18aa980;hpb=af5684bf18077acf1f448c6f2a62ef1af9f9be05;p=vpp.git 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)):