gpt4 book ai didi

python - 在 .py 文件中的文本文件上运行 doctest?

转载 作者:行者123 更新时间:2023-12-01 05:56:58 24 4
gpt4 key购买 nike

我想在 .txt 文件上运行 Python 的 doctest(即,不是在文档字符串上),但我不想进入命令行。

python -m doctest myfile.txt

我不想从命令行执行此操作的原因是我不想离开 Visual Studio。我想用 F5 运行它,然后在 VS 中查看我的输出。

问题:如何从 .py 文件运行 doctest,而不是从命令行运行?

最佳答案

查看 doctest.testfile 。我认为这会做你想要的......

以下是来自 doctest.py 的一些源代码,用于示例用法:

def _test():
testfiles = [arg for arg in sys.argv[1:] if arg and arg[0] != '-']
if not testfiles:
name = os.path.basename(sys.argv[0])
if '__loader__' in globals(): # python -m
name, _ = os.path.splitext(name)
print("usage: {0} [-v] file ...".format(name))
return 2
for filename in testfiles:
if filename.endswith(".py"):
# It is a module -- insert its dir into sys.path and try to
# import it. If it is part of a package, that possibly
# won't work because of package imports.
dirname, filename = os.path.split(filename)
sys.path.insert(0, dirname)
m = __import__(filename[:-3])
del sys.path[0]
failures, _ = testmod(m)
else:
failures, _ = testfile(filename, module_relative=False)
if failures:
return 1
return 0


if __name__ == "__main__":
sys.exit(_test())

关于python - 在 .py 文件中的文本文件上运行 doctest?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11992994/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com