notests 正在捕获我的打印语句的输出。如何规避这个问题?

发布于 2024-11-07 09:35:35 字数 457 浏览 4 评论 0原文

当我输入时,

$ nosetests -v mytest.py

当所有测试通过时,我的所有打印输出都会被捕获。 即使一切都通过了,我也想看到打印输出。

所以我正在做的是强制断言错误以查看输出,如下所示。

class MyTest(TestCase):

    def setUp(self):
        self.debug = False

    def test_0(self):
        a = .... # construct an instance of something
        # ... some tests statements
        print a.dump()
        if self.debug:
            eq_(0,1)

感觉太黑了,一定有更好的方法。请赐教。

When I type

$ nosetests -v mytest.py

all my print outputs are captured when all tests pass.
I want to see print outputs even everything passes.

So what I'm doing is to force an assertion error to see the output, like this.

class MyTest(TestCase):

    def setUp(self):
        self.debug = False

    def test_0(self):
        a = .... # construct an instance of something
        # ... some tests statements
        print a.dump()
        if self.debug:
            eq_(0,1)

It feels so hackish, there must be a better way. Enlighten me please.

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

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

发布评论

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

评论(5

初心未许 2024-11-14 09:35:35

要么:

$ nosetests --nocapture mytest.py

或者:(

$ NOSE_NOCAPTURE=1 nosetests mytests.py

也可以在 nose.cfg 文件中指定,请参阅 nosetests --help

Either:

$ nosetests --nocapture mytest.py

Or:

$ NOSE_NOCAPTURE=1 nosetests mytests.py

(it can also be specified in the nose.cfg file, see nosetests --help)

狼亦尘 2024-11-14 09:35:35

使用

--nologcapture 

它对我有用

Use

--nologcapture 

it worked for me

不回头走下去 2024-11-14 09:35:35

这是最近添加到鼻子而不是 --nocapture 这样做:

nosetests -s

This was added recently to nose instead of --nocapture do this:

nosetests -s
甜妞爱困 2024-11-14 09:35:35

为了与 http://travis-ci.org 集成,我已将其放入 .travis 中。 yml

script:  "python setup.py nosetests -s"

其中 setup.py 包含:

setup(
    ...
    tests_require=['nose>=1.0'],
    test_suite='nose.collector',
)

In order to integrate with http://travis-ci.org I have put this into .travis.yml:

script:  "python setup.py nosetests -s"

where setup.py contains:

setup(
    ...
    tests_require=['nose>=1.0'],
    test_suite='nose.collector',
)
独自唱情﹋歌 2024-11-14 09:35:35

试试这个,

nosetests -v 2 -s yourtest

Flags 期待顺序。

Try this,

nosetests -v 2 -s yourtest

Flags expect order.

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