如何更改 python (2.7) untitest 的测试描述

发布于 2024-10-21 14:54:21 字数 402 浏览 7 评论 0原文

看来Python 2.7中的unittest模块已经改变了很多

我有一个测试用例:

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

控制台输出是:

Test foo ... ok

升级到Python 2.7后,控制台输出现在是:

test_foo (testcase.demotest.DemoTest)

Test foo ... ok

第一行描述没什么用。我想隐藏它,但不知道如何隐藏。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最单纯的乌龟 2024-10-28 14:54:21

鉴于您不厌其烦地为测试编写文档字符串,额外的输出看起来有点多余。以下是抑制它的一种方法;您需要将其添加到测试文件的顶部:

from unittest.runner import TextTestResult
TextTestResult.getDescription = lambda _, test: test.shortDescription()

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()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文