From 5f102cca8bd5b55c7114f773180b237f9f512337 Mon Sep 17 00:00:00 2001 From: Alexandre Gobbo Date: Wed, 11 Dec 2019 10:53:29 +0100 Subject: [PATCH] Closedown --- script/ut.py | 1 + 1 file changed, 1 insertion(+) diff --git a/script/ut.py b/script/ut.py index f96b574..5ee01ac 100644 --- a/script/ut.py +++ b/script/ut.py @@ -509,6 +509,7 @@ class TestLoader: def loadTestsFromModule(self, module): """Return a suite of all tests cases contained in the given module""" tests = [] + print (dir(module)) for name in dir(module): obj = getattr(module, name) if (isinstance(obj, (type, types.ClassType)) and