【pytest】如何生成 html 和 allure 测试报告

生成 html 测试报告:

  1. 安装插件:pip install pytest-html;
  2. 使用参数:pytest -m xxx --html=report_path.html;

生成 allure 测试报告:

  1. 安装插件:pip install allure-pytest;
  2. 下载并解压 allure2,将 allure2/bin 目录配置到环境变量;
  3. --alluredir 参数生成 allure 报告:pytest --alluredir=allure_path
  4. 开启 allure 服务:allure serve allure_path (python生成的 allure 报告的文件夹路径)
  5. 访问 allure 服务的本地路径,查看报告;

你可能感兴趣的:(pytest)