Nosetests 进行了 0 次测试
当我运行
nosetests --doctest-extension=.txt
我得到
在 0.002 秒内运行 0 次测试
确定
当我在 README.txt 文件中进行测试时,为什么会显示 0 次测试?
When I run
nosetests --doctest-extension=.txt
I get
Ran 0 tests in 0.002s
OK
Why does it say 0 tests when I have tests in the file README.txt?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
doctest
,您还必须指定nose
必须在启用 doctest 插件的情况下运行。这应该可以解决问题:
If you're using
doctest
you also have to specify thatnose
has to run with the doctest plugin enabled.This should do the trick: