我們知道一個游戲項目的發(fā)布,是經(jīng)過開發(fā)人員不斷的測試才得以上線的。測試對于開發(fā)人員來說至關重要。那么如何簡潔的顯示已測試的內容,并允許開發(fā)人員從日常執(zhí)行中提取有用信息呢?那就是使用靈活的輕量級多語言測試報告工具allure,以簡潔的網(wǎng)絡報告形式展現(xiàn)。下面,小編就帶領大家在python中如何生成allure報告。
一、安裝pytest
pytest是python的一個第三方單元測試框架,在這里用于生成原始的執(zhí)行結果。
非常方便和易用??梢砸?guī)模化以及編寫更加復雜的測試用例。
pipinstallpytest
二、安裝allure-pytest
allure-pytest是python的一個第三方庫。用于連接pytest和allure,使它們可以配合在一起使用。
allure-pytest基于pytest的原始執(zhí)行結果生成適用于allure的json格式結果。該json格式結果可以用于后續(xù)適用allure生成html結果。
pipinstallallure-pytest
三、安裝allure-commandline
此工具是用于命令行生成allure報告的工具
四、allure生成測試報告
1、生成xml文件
pytest測試文件所在路徑--alluredir生成的測試結果數(shù)據(jù)保存的目錄
pytest--alluredir=resport/xml/D:/PyTest/tests/allure/test_allure_demo.py1
2、生成html文件
alluregenerate測試結果數(shù)據(jù)所在目錄-o測試報告保存的目錄--clean
alluregenerateD:/PyTest/tests/allure/report/xml-oD:/PyTest/tests/allure/report/html--clean1
3、allure生成測試報告
數(shù)據(jù)所在目錄-o測試報告保存的目錄--clean
alluregenerateD:/PyTest/tests/allure/report/xml-oD:/PyTest/tests/allure/report/html--clean1
以上內容為大家介紹了python中如何生成allure報告?,希望對大家有所幫助,如果想要了解更多Python相關知識,請關注IT培訓機構:千鋒教育。