我试图在我的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>
出了什么问题,它为什么会停止?