Pytest之生成allure报告
一、前戏
在之前我们已经学会使用 pytest-html
插件生成 html 格式的测试报告:
1 # 第一步,安装插件 2 pip install pytest-html 3 4 # 第二步,执行用例时使用 --html 参数 5 ## main 函数中执行 6 if __name__ == "__main__": 7 pytest.main(["-vs", "--html=./report/result.html"]) 8 9 ## 使用命令模式执行 10 pytest -vs --html ./report/result.html