溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

pytest+Allure搭建方法以及生成報(bào)告的示例分析

發(fā)布時(shí)間:2021-09-11 16:31:55 來(lái)源:億速云 閱讀:215 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹pytest+Allure搭建方法以及生成報(bào)告的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

一、Allure搭建

1、下載Allure安裝包

鏈接:https://github.com/allure-framework/allure2/releases

pytest+Allure搭建方法以及生成報(bào)告的示例分析

2、安裝allure-pytest庫(kù)

cmd命令行輸入命令:

pip install allure-pytest

pytest+Allure搭建方法以及生成報(bào)告的示例分析

3、配置allure環(huán)境變量

在Path環(huán)境變量中,輸入allure的地址

pytest+Allure搭建方法以及生成報(bào)告的示例分析

4、檢驗(yàn)allure安裝成功

命令行輸入allure

pytest+Allure搭建方法以及生成報(bào)告的示例分析

二、allure生成報(bào)告代碼

1、allure指定用例嚴(yán)重等級(jí):

blocker(阻塞缺陷);critical(嚴(yán)重缺陷);normal(一般缺陷);minor(次要缺陷);trivial(輕微缺陷)
代碼:

"--allure-severities=blocker,critical,normal"

2、allure指定標(biāo)記的測(cè)試用例執(zhí)行

示例@allure.story(‘xx')方法,其他@allure.feature(‘xx')標(biāo)記也可以實(shí)現(xiàn)
代碼:

"--allure-stories=自動(dòng)化用例--搜索詞,自動(dòng)化用例--直達(dá)詞"

pytest+Allure搭建方法以及生成報(bào)告的示例分析

3、生成報(bào)告代碼

生成到指定的目錄下或者生成到當(dāng)前pycharm本地目錄下
建議:提前新建一個(gè)temp文件用于存儲(chǔ)腳本數(shù)據(jù)

pytest.main(["--allure-severities=blocker,critical,normal",
                 # "--allure-stories=自動(dòng)化用例--搜索詞,自動(dòng)化用例--直達(dá)詞",
                 "test_AppIos_run.py", "--alluredir", "D:\\AllureReport\\temp"])
    os.system("allure generate D:\\AllureReport\\temp -o D:/AllureReport/reports --clean")
    #報(bào)告寫(xiě)入pycharm本地目錄,自動(dòng)生成對(duì)應(yīng)的文件夾
    # pytest.main(["-s", "test_RomweIos_run.py", "--alluredir", "./temp"])
    # os.system("allure generate ./temp -o ./reports --clean")

注意,打開(kāi)指定目錄下的allure報(bào)告:

生成到其他磁盤(pán)的指定目錄下,需要開(kāi)啟對(duì)應(yīng)的服務(wù)器才可以正常展示報(bào)告
原因:PyCharm有自帶的容器服務(wù),有對(duì)應(yīng)端口運(yùn)行allure報(bào)告,如果不在pycharm中打開(kāi),需要本地可以開(kāi)啟一個(gè)容器服務(wù)去運(yùn)行測(cè)試報(bào)告

1、安裝anywhere

AnyWhere是一款隨啟隨用的靜態(tài)文件服務(wù)器,可以隨時(shí)隨地將你的當(dāng)前目錄變成一個(gè)靜態(tài)文件服務(wù)器的根目錄。

npm install -g anywhere

2、安裝成功后,進(jìn)入報(bào)告所在的目錄
示例:進(jìn)入D盤(pán)的AllureReport文件目錄下
(1)命令行輸入d:進(jìn)入到D盤(pán)
(2)cd /指定文件夾

pytest+Allure搭建方法以及生成報(bào)告的示例分析

3、在對(duì)應(yīng)文件夾啟動(dòng)anywhere服務(wù)

輸入anywhere,回車(chē)后頁(yè)面彈出該目錄下的文件,點(diǎn)擊對(duì)應(yīng)的allure報(bào)告即可打開(kāi)

pytest+Allure搭建方法以及生成報(bào)告的示例分析

4、打開(kāi)報(bào)告

pytest+Allure搭建方法以及生成報(bào)告的示例分析
pytest+Allure搭建方法以及生成報(bào)告的示例分析

其他方法:安裝Tomcat,將報(bào)告放入webapps文件下,啟動(dòng)Tomcat服務(wù),打開(kāi)對(duì)應(yīng)報(bào)告頁(yè)面即可

以上是“pytest+Allure搭建方法以及生成報(bào)告的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI