在sphinx doc中运行的doctest

问题描述 投票:0回答:1

我正在尝试运行用我的第一个文档编写的doctest。但是我不知道如何运行它。我写了以下内容:

.. doctest::

    >>> 43 + 1
    45

然后我做:

$ make html

但是文档构建成功。

我也很感兴趣,如果不构建HTML文档就可以进行测试?

先谢谢您。

python-sphinx restructuredtext doctest
1个回答
0
投票

所以,实际上并不难。我应该运行以下命令:

$ pytest 'path to static rst files' --doctest-glob=*.rst
© www.soinside.com 2019 - 2024. All rights reserved.