让epydoc自动运行doctests

时间:2014-12-03 17:59:19

标签: python doctest epydoc

我有一个夜间epydoc作业来生成文档,但我也希望它运行我的docstring测试。有没有人知道如何让它自动运行docstring测试,它会为它创建文档的每个文件?

我尝试将此代码插入epydoc的主要块

import doctest
doctest.testmod()

但无济于事。它寻找那个区块中的doctests,当然也没有。我得到了这个输出:

1 items had no tests:
    __main__
0 tests in 1 items.
0 passed and 0 failed.
Test passed.

0 个答案:

没有答案