This commit is contained in:
2019-12-11 10:58:37 +01:00
parent 5f102cca8b
commit a2e1eb6868

View File

@@ -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