Commit 13ee0ad6 authored by Stefan Behnel's avatar Stefan Behnel

remove verbose (and redundant) test runner output

parent fde54fef
...@@ -327,7 +327,6 @@ class CythonRunTestCase(CythonCompileTestCase): ...@@ -327,7 +327,6 @@ class CythonRunTestCase(CythonCompileTestCase):
self.setUp() self.setUp()
self.runCompileTest() self.runCompileTest()
if not self.cython_only: if not self.cython_only:
sys.stderr.write('running doctests in %s ...\n' % 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())
...@@ -348,7 +347,6 @@ class CythonUnitTestCase(CythonCompileTestCase): ...@@ -348,7 +347,6 @@ class CythonUnitTestCase(CythonCompileTestCase):
try: try:
self.setUp() self.setUp()
self.runCompileTest() self.runCompileTest()
sys.stderr.write('running tests in %s ...\n' % 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