运行 python 来自 python 脚本的测试套件(以编程方式)?
Running python test suite from a python script (programmatrically)?
您可以从命令行使用 运行 Python 测试套件 (https://docs.python.org/3/library/test.html):
$ python -m test
你如何从 python 脚本中 运行 它?
import test
# test.run_all_tests() ???
取自 __main__.py
文件:
from test.libregrtest import main
main()
请记住,不鼓励在内部 CPython 开发之外使用此代码,因为代码可能会更改,恕不另行通知。
您可以从命令行使用 运行 Python 测试套件 (https://docs.python.org/3/library/test.html):
$ python -m test
你如何从 python 脚本中 运行 它?
import test
# test.run_all_tests() ???
取自 __main__.py
文件:
from test.libregrtest import main
main()
请记住,不鼓励在内部 CPython 开发之外使用此代码,因为代码可能会更改,恕不另行通知。