一、安裝外掛
要生成html型別的報告,需要使用pytest-html外掛,可以在IDE中安裝,也可以在命令列中安裝。外掛安裝
的位置涉及到不同專案的使用,這裡不再詳述,想了解的可自行查詢。
IDE中安裝
在File>Settings>Project>Project Interpreter介面,點選“ + ”搜尋pytest-html即可進行安裝。
命令列安裝
建議先在命令列中切換到python安裝路徑“ Lib\site-packages ”目錄,再執行安裝命令。
pip install -U pytest-html
二、生成html報告
先準備一個簡單的執行指令碼
import pytest def fun(x): return x + 1 def test_answer_1(): """測試斷言一""" assert fun(3) == 4 def test_answer_2(): """測試斷言二""" assert fun(5) == 7 @pytest.mark.parametrize("test_input,expected",[ ("3+5",8), ("2+4",6), pytest.param("6 * 9",42,marks=pytest.mark.xfail), pytest.param("6 * 6",42,marks=pytest.mark.skip) ]) def test_mark(test_input,expected): """用例集合""" assert eval(test_input) == expected if __name__ == '__main__': pytest.main(['-v','--html=report.html','test_08.py'])
生成報告命令 pytest --html=報告名稱 要執行的指令碼檔案 ,執行上述指令碼檢視結果。
report.html:報告名稱,記錄報告生成時間以及外掛版本
Environment:測試環境
Summary:用例統計
Results:測試結果,點選Show all details / Hide all details可以展開結果詳情或收縮全部結果
三、使用小技巧
指定路徑
通過上述命令執行指令碼後可以發現,測試報告儲存在專案的根目錄下,查詢報告比較繁瑣。我們可以
在執行命令中指定報告路徑 pytest -v --html=./outputs/report.html test_08.py ,程式碼執行完成,
可以發現專案根目錄下生成了outputs檔案,測試報告也在其中。
報告獨立
當本地執行完成,想把測試報告分享出去,卻發現分享出去的報告開啟後樣式丟失。因為程式碼執行完成
會生成assets檔案,將CSS儲存在了本地。我們可以通過命令將CSS寫入HTML中,這樣生成的測試報告就能
對外分享了。
pytest -v --html=./outputs/report.html --self-contained-html test_08.py
四、報告優化
在實際的工作中,通過上述操作生成的測試報告一般不是我們想要的結果。環境資訊通過增減更換成需
要展示的內容、增加用例描述、去掉多餘的列等等。這裡需要將優化程式碼寫入conftest.py檔案,該檔名是固
定的不可更改。
匯入引用包
import pytest from py._xmlgen import html from datetime import datetime
修改測試環境
@pytest.mark.parametrize def pytest_configure(config): config._metadata.pop("JAVA_HOME") # 刪除java_home config._metadata["專案名稱"] = "引擎自動化" # 新增專案名稱 config._metadata["介面地址"] = "https://www.example.com/poke" # 新增介面地址
修改用例統計
@pytest.mark.parametrize def pytest_html_results_summary(prefix,summary,postfix): prefix.extend([html.p("所屬部門:測試組")]) prefix.extend([html.p("測試人員:許衛玲")])
修改結果顯示
@pytest.mark.optionalhook def pytest_html_results_table_header(cells): cells.insert(1,html.th("Description")) # 表頭新增Description cells.insert(2,html.th("Time",class_="sortable time",col="time")) cells.pop(-1) # 刪除link @pytest.mark.optionalhook def pytest_html_results_table_row(report,cells): cells.insert(1,html.td(report.description)) # 表頭對應的內容 cells.insert(2,html.td(datetime.now(),class_="col-time")) cells.pop(-1) # 刪除link @pytest.mark.hookwrapper def pytest_runtest_makereport(item,call): # Description取值為用例說明__doc__ outcome = yield report = outcome.get_result() report.description = str(item.function.__doc__) report.nodeid = report.nodeid.encode("utf-8").decode("unicode_escape")
修改完成,重新執行指令碼,檢視最終效果。