如何并行化用pytest编写的单元测试的执行?我可以选择哪些并行策略?
答案 0 :(得分:2)
要并行运行pytest,您将需要安装pytest-xdist。请查看下面列出的不同并行策略,您可以使用其中任何一种(但是我敢打赌,其中一种最适合您的特定情况):
pip install pytest-xdist
# The most primitive case, sending tests to multiple CPUs:
pytest -n NUM
# Execute tests within 3 subprocesses.
pytest --dist=each --tx 3*popen//python=python3.6
# Execute tests in 3 forked subprocess. Won't work on windows.
pytest --dist=each --tx 3*popen//python=python3.6 --boxed
# Sending tests to the ssh slaves
pytest --dist=each --tx ssh=first_slave --tx ssh=seconds_slave --rsyncdir package package
# Sending tests to the socket server, link is available below.
python socketserver.py :8889 &
python socketserver.py :8890 &
pytest --dist=each --tx socket=localhost:8889 --tx socket=localhost:8890
您可以为--dist
(-d
)参数提供不同的值,该参数处理测试在工作人员之间分布的方式,有关--dist的用法,请参阅文档。
注意:执行测试后,socket_server.py将关闭。我建议您从单独的终端窗口运行套接字服务器以进行调试
您可以引入更复杂的流程,例如在已启动套接字服务器的“ pytest worker”和另一个与之通信并充当“ pytestRunner”的docker容器内在docker容器中运行测试。