Pytest生成allure报告

  • 依赖安装:  

    # 安装allure-pytest
    pip3 install allure-pytest --index-url https://pypi.douban.com/simple      # 请先卸载掉 pytest-allure-adaptor
    # 安装allure启动一个服务来读取报告
    https://github.com/allure-framework/allure2/releases  # 我这里安装的2.14 直接下载deb包然后安装
    # 执行用例生成后会生成原始文件.json这个只是测试报告的原始文件,不能打开成html的报告
    pytest --alluredir reults/
    # 执行完成后pytest --alluredir report/,report目录会生成一个allure_raw的原始文件,这个只是测试报告的原始文件,不能打开成html的报告
    # 这个时候需要启动allure服务器来读取对应的原始文件,
    sudo allure serve reults/
  • 运行测试:

    • test_desktop.py
      
      import pytest
      
      
      @pytest.mark.Desktop_Professional
      @pytest.mark.特性1
      def test_1():
          print('执行了桌面专业版特性1用例')
          assert True
      
      
      @pytest.mark.Desktop_Professional
      @pytest.mark.特性2
      def test_2():
          print('执行了桌面专业版特性2用例')
          assert False
      
    • 终端运行:
      pytest -v  test_desktop.py   --alluredir reults
      

      项目目录下面生成一个reults文件夹

    • 查看报告命令:
      sudo allure serve reults/ 
  • 报告样式:

    • Pytest生成allure报告
上一篇:SpringCloud微服务实战——搭建企业级开发框架(二十四):集成行为验证码和图片验证码实现登录功能


下一篇:Apache Tomcat/8.5.19的安装教程