python中如何生成allure报告?
986次观看
标签:
报告
python
allure
老师回答
一、安装pytest
pytest是python的一个第三方单元测试框架,在这里用于生成原始的执行结果。
非常方便和易用。可以规模化以及编写更加复杂的测试用例。
pip install pytest
二、安装allure-pytest
allure-pytest
是python
的一个第三方库。用于连接pytest
和allure
,使它们可以配合在一起使用。
allure-pytest
基于pytest
的原始执行结果生成适用于allure
的json格式结果。该json格式结果可以用于后续适用allure
生成html结果。
pip install allure-pytest
三、安装allure-commandline
此工具是用于命令行生成allure报告的工具,官方下载链接:https://bintray.com/qameta/generic/allure2
四、allure生成测试报告
a、生成xml文件
pytest 测试文件所在路径 --alluredir 生成的测试结果数据保存的目录
pytest --alluredir=resport/xml/ D:/PyTest/tests/allure/test_allure_demo.py1
b、生成html文件
allure generate 测试结果数据所在目录 -o 测试报告保存的目录 --clean
allure generate D:/PyTest/tests/allure/report/xml -o D:/PyTest/tests/allure/report/html --clean1
c、allure生成测试报告
数据所在目录 -o 测试报告保存的目录 --clean
allure generate D:/PyTest/tests/allure/report/xml -o D:/PyTest/tests/allure/report/html --clean1
©本文版权归环球青藤所有,任何形式转载请联系我们。
免费直播
精选课程
相关推荐