Nose:捕获脚本输出以及测试输出

发布于 2024-09-12 20:34:04 字数 360 浏览 7 评论 0原文

如果我将任何打印语句放在模块的顶部,而不是放在任何类/函数内,则在通过鼻子运行测试时不会打印任何内容。

import os
print 'hi'
#----------------------------------------------------------------------

def make_shapes(canvas):
    """
    Generates shapes. Needs a Canvas instance to add the shapes to
    """
    params = [canvas, Colour(0, 0, 0), 1]

不过,将打印放在函数内是可行的。有什么想法吗?

If I put any print statements at the top of my module, not inside any class/function, nothing gets printed while running my test through nose.

import os
print 'hi'
#----------------------------------------------------------------------

def make_shapes(canvas):
    """
    Generates shapes. Needs a Canvas instance to add the shapes to
    """
    params = [canvas, Colour(0, 0, 0), 1]

placing the print inside the function works though. Any ideas?

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

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

发布评论

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

评论(1

花桑 2024-09-19 20:34:04

不确定这是否是问题所在,但您可以使用 -s 参数运行 nosetests 以防止捕获标准输出。

Not sure if this is the problem, but you can run nosetests with the -s argument to prevent capturing of stdout.

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