Commit 1b0ffcb1 authored by Stefan Behnel's avatar Stefan Behnel

more readable test output

parent 71a59940
...@@ -259,6 +259,7 @@ class CythonRunTestCase(CythonCompileTestCase): ...@@ -259,6 +259,7 @@ class CythonRunTestCase(CythonCompileTestCase):
result.startTest(self) result.startTest(self)
try: try:
self.runCompileTest() self.runCompileTest()
print('running doctests in %s ...' % self.module)
doctest.DocTestSuite(self.module).run(result) doctest.DocTestSuite(self.module).run(result)
except Exception: except Exception:
result.addError(self, sys.exc_info()) result.addError(self, sys.exc_info())
...@@ -270,7 +271,7 @@ class CythonRunTestCase(CythonCompileTestCase): ...@@ -270,7 +271,7 @@ class CythonRunTestCase(CythonCompileTestCase):
class CythonUnitTestCase(CythonCompileTestCase): class CythonUnitTestCase(CythonCompileTestCase):
def shortDescription(self): def shortDescription(self):
return "compiling and running unit tests in " + self.module return "compiling tests in " + self.module
def run(self, result=None): def run(self, result=None):
if result is None: if result is None:
...@@ -278,6 +279,7 @@ class CythonUnitTestCase(CythonCompileTestCase): ...@@ -278,6 +279,7 @@ class CythonUnitTestCase(CythonCompileTestCase):
result.startTest(self) result.startTest(self)
try: try:
self.runCompileTest() self.runCompileTest()
print('running tests in %s ...' % self.module)
unittest.defaultTestLoader.loadTestsFromName(self.module).run(result) unittest.defaultTestLoader.loadTestsFromName(self.module).run(result)
except Exception: except Exception:
result.addError(self, sys.exc_info()) result.addError(self, sys.exc_info())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment