It seems that the unittest module has been changed a lot in Python 2.7

I have a test case:

class DemoTest(unittest.TestCase):
  def test_foo(self):
      """Test foo"""
      pass

The console output is:

Test foo ... ok

After upgrading to Python 2.7, the console output is now:

test_foo (testcase.demotest.DemoTest)

Test foo ... ok

The first line of description is useless. I want to hide it, but do not know how to.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Given that you've taken the trouble to write docstrings for your test, the extra output looks a bit redundant. Below is one way it could be suppressed; you'd need to add this to the top of your test file:

from unittest.runner import TextTestResult
TextTestResult.getDescription = lambda _, test: test.shortDescription()
link|improve this answer
I love the smell me monkey patching in the morning. – David Heffernan Mar 11 '11 at 20:16
me -> of phone troubles! – David Heffernan Mar 11 '11 at 21:08
Hehe, I agree, and I wish there was a less hacky way to do this in 2.7. I tried a few other things, but this ended up being the shortest path to producing the desired output. – samplebias Mar 11 '11 at 21:52
feedback

Wheh I try this on python 2.7 I get this error message:

Traceback (most recent call last):
  File "./test2.py", line 20, in <module>
    unittest.main()
  File "/usr/lib/python2.7/unittest/main.py", line 95, in __init__
    self.runTests()
  File "/usr/lib/python2.7/unittest/main.py", line 229, in runTests
    self.result = testRunner.run(self.test)
  ... [ Omited for clarity]
  File "/usr/lib/python2.7/unittest/runner.py", line 53, in startTest
    self.stream.write(self.getDescription(test))
TypeError: expected a character buffer object

It can be fixed just casting to string:

from unittest.runner import TextTestResult
TextTestResult.getDescription = lambda _, test: str(test.shortDescription())
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.