Why could doctests raise a NameError when run with Sphinx's `make doctest`?

我怕爱的太早我们不能终老 提交于 2019-12-04 15:05:19
mzjn

I can reproduce the error in the question if the module with the tested function is not imported properly.

To make it work, you can use a testsetup directive:

.. testsetup:: 

   from yourmodule import verify_balanced

>>> verify_balanced('asdf (foo) [bar] [[baz], {}, ()]')
>>> verify_balanced('asdf (foo [bar] [[baz], {}, ()]')
5

Note that doctest ignores None return values (see Python doctests: test for None).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!