summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2009-01-30 10:15:05 +0100
committerAdrien Di Mascio <Adrien.DiMascio@logilab.fr>2009-01-30 10:15:05 +0100
commitce9f8f14a4dbff0904ec64c670f75b0b9d6e03c5 (patch)
tree0792c9bb48b37c0314d23a700418e86301f8310c
parent850f59e72d0cd53c49229a9e7ad9e4b87a3d7faa (diff)
downloadlogilab-common-ce9f8f14a4dbff0904ec64c670f75b0b9d6e03c5.tar.gz
[testlib] teardown_module() is now given the TestResult for possible postprocessing
-rw-r--r--decorators.py2
-rw-r--r--testlib.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/decorators.py b/decorators.py
index 7f1ff29..fa7e187 100644
--- a/decorators.py
+++ b/decorators.py
@@ -94,7 +94,7 @@ class wproperty(object):
self.setfunc(obj, value)
def __get__(self, obj, cls):
- assert obj is not None
+ # assert obj is not None
return getattr(obj, self.attrname)
diff --git a/testlib.py b/testlib.py
index 691c938..76efcc5 100644
--- a/testlib.py
+++ b/testlib.py
@@ -896,7 +896,7 @@ succeeded tests into", osp.join(os.getcwd(),FILE_RESTART)
result = self.testRunner.run(self.test)
if hasattr(self.module, 'teardown_module'):
try:
- self.module.teardown_module(self.options)
+ self.module.teardown_module(self.options, result)
except Exception, exc:
print 'teardown_module error:', exc
sys.exit(1)