标签: python pytest
是否可以在进程中运行pytest而不是在命令行中运行?
这在鼻子测试中存在:import nose; nose.run(...)
import nose; nose.run(...)
答案 0 :(得分:1)
With Pytest 2.0 you can:
import pytest pytest.main()