在进程中运行pytest

时间:2017-02-27 12:01:15

标签: python pytest

是否可以在进程中运行pytest而不是在命令行中运行?

这在鼻子测试中存在:import nose; nose.run(...)

1 个答案:

答案 0 :(得分:1)

With Pytest 2.0 you can

import pytest
pytest.main()