From a2e1eb6868cacf1dd698872877760ced85112b4f Mon Sep 17 00:00:00 2001 From: Alexandre Gobbo Date: Wed, 11 Dec 2019 10:58:37 +0100 Subject: [PATCH] Startup --- script/ut.py | 1 - 1 file changed, 1 deletion(-) diff --git a/script/ut.py b/script/ut.py index 5ee01ac..f96b574 100644 --- a/script/ut.py +++ b/script/ut.py @@ -509,7 +509,6 @@ 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