1:多线程执行(用例没有依赖,没有顺序,独立运行)
1:安装
python3 -m pip install pytest-xdist
2:运行 -n 3(指定并行数)
pytest -v -n 2
2:Pytest-html生成报告
1:安装
python3 -m pip install pytest-html
2:生成报告
pytest -v -s --html=report.html --capture=sys
2023-10-02 18:05:58
1:多线程执行(用例没有依赖,没有顺序,独立运行)
1:安装
python3 -m pip install pytest-xdist
2:运行 -n 3(指定并行数)
pytest -v -n 2
2:Pytest-html生成报告
1:安装
python3 -m pip install pytest-html
2:生成报告
pytest -v -s --html=report.html --capture=sys