projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
74745b3
)
better test output
author
Stefan Behnel
<scoder@users.berlios.de>
Sun, 25 May 2008 13:22:47 +0000
(15:22 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Sun, 25 May 2008 13:22:47 +0000
(15:22 +0200)
runtests.py
patch
|
blob
|
history
diff --git
a/runtests.py
b/runtests.py
index a8b1d57f3310d48c0e974a62c3f4cb84e3fd7f96..fa7c7310ac067b6658e384a7d151b357a6bac920 100644
(file)
--- a/
runtests.py
+++ b/
runtests.py
@@
-208,11
+208,11
@@
class CythonRunTestCase(CythonCompileTestCase):
def run(self, result=None):
if result is None:
result = self.defaultTestResult()
+ result.startTest(self)
try:
self.runTest()
doctest.DocTestSuite(self.module).run(result)
except Exception:
- result.startTest(self)
result.addError(self, sys.exc_info())
result.stopTest(self)
try: