标签: python nosetests
当我跑步时
nosetests --doctest-extension=.txt
我得到了
在0.002s中进行0测试 行
在0.002s中进行0测试
行
当我在README.txt文件中进行测试时,为什么会说0测试?
答案 0 :(得分:3)
如果您使用的是doctest,则还必须指定nose必须在启用doctest插件的情况下运行。
doctest
nose
这应该可以解决问题:
nosetests --with-doctest --doctest-extension=txt