1. 程式人生 > 其它 >httprunner 3.x學習15 - allure報告環境

httprunner 3.x學習15 - allure報告環境

前言

httprunner 3.x版本是基於 pytest 的,pytest 當然是可以支援 allure 報告了
windows環境版本:

  • python 3.6版本
  • pytest 5.4.3版本
  • allure-pytest 2.8.6 最新版
  • allure 命令列 2.13.0 版本

allure-pytest 環境準備

使用 pip 安裝 allure-pytest, 加上--index-url 國內下載源,下載會快一些

pip install allure-pytest==2.8.6 --index-url https://pypi.douban.com/simple

執行用例時候如果報錯:AttributeError: module 'allure' has no attribute 'severity_level'
這個是pytest-allure-adaptor 這個外掛與 allure-pytest 不能共存,解除安裝掉 pytest-allure-adaptor

pip uninstall pytest-allure-adaptor

allure 命令列工具

allure 是一個命令列工具,需要去github上下載https://github.com/allure-framework/allure2/releases
注意不要下載2.13.10版本,這個版本有問題,很多同學使用這個版本會出現開啟allure報告是空白頁

下載完成之後,解壓到本地電腦

把bin目錄新增到環境變數Path下

開啟cmd視窗輸入allure,出現內容說明allure命令列工具安裝成功

生成 allure 報告

執行用例和生成allure報告是2個分開的步驟,執行用例生成json格式的報告檔案,--alluredir

指定報告路徑

>hrun testcases/login_env.yml --alluredir ./allure_report

也可以用pytest命令執行py檔案

>pytest testcases/login_userinfo_test.py --alluredir ./allure_report

執行後會在當前目錄生成allure_report資料夾,使用allure目錄行工具啟動服務

>allure serve ./allure_report

allure_report 資料夾內容

生成的allure報告,用瀏覽器開啟