make test: remove unnecessary check 21/15821/2
authorKlement Sekera <ksekera@cisco.com>
Thu, 8 Nov 2018 12:05:37 +0000 (13:05 +0100)
committerDamjan Marion <dmarion@me.com>
Thu, 8 Nov 2018 13:25:46 +0000 (13:25 +0000)
Change-Id: I90ee144a5c5a2e753e36d45c0ce98c9a8b477f15
Signed-off-by: Klement Sekera <ksekera@cisco.com>
test/discover_tests.py

index 99016e2..fbd2d9c 100755 (executable)
@@ -22,8 +22,6 @@ def discover_tests(directory, callback):
         if not _f.startswith("test_") or not _f.endswith(".py"):
             continue
         name = "".join(f.split("/")[-1].split(".")[:-1])
-        if name in sys.modules:
-            raise Exception("Duplicate test module `%s' found!" % name)
         module = importlib.import_module(name)
         for name, cls in module.__dict__.items():
             if not isinstance(cls, type):