doctest在导入后停止

时间:2016-01-11 16:59:18

标签: python import doctest

我试图在我的Python代码上运行doctest

我用它来运行doctest

import doctest
doctest.testfile("test.txt", verbose=True)

并且test.txt文件如下所示:

print("hello")

hello
from filetotest import *

print("hello")

hello

我的问题是,在第3行from filetotest import *之后,doctest停止运行doctest

Trying:

    print("hello")
Expecting:

    hello
ok
Trying:

    from filetotest import *

Expecting nothing

所以在我尝试从filetotest doctest导入函数后,不要尝试文件中的其余部分,我想要做的是测试filetotest中的函数。 / p>

出了什么问题,它为什么会停止?

0 个答案:

没有答案