pytest+allure安装

2022/7/6 23:32:17

本文主要是介绍pytest+allure安装,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

pytest+allure安装

安装依赖包

sudo pip3 install pytest allure-python-commons allure-pytest
sudo apt install openjdk-8-jdk npm

安装npm对应版本6.4.1(node 10.15.2)

查询当前版本

npm -v 
node -v

下载地址:https://docs.deepin.com/d/27c896aeb3/
解压v6.4.1.tar.gz,并进行安装

cd cli-6.4.1
sudo make install

安装allure命令

sudo npm install -g allure-commandline --save-dev

如果默认安装报错,则需要用淘宝镜像源进行注册,再执行上面的安装命令

sudo npm install -g less
sudo npm install -g cnpm --registry=https:/registry.npm.taobao.org
sudo npm config set registry https:/registry.npm.taobao.org

执行生成报告

生成pytest_allure报告

./pytest_allure_report.sh
#!/bin/bash
pytest --alluredir ./result/
allure generate ./result/ -o ./report/ --clean
cp  -r ./report/history  ./result/
allure open -h 127.0.0.1 -p 8088 ./report/

生产pytest_html报告

sudo pip3 install pytest-html

./pytest_html_report.sh
#!/bin/bash
pytest test_dde_dock.py --html=./html/report.html

支持中文

cd /usr/local/lib/python3.7/dist-packages/_pytest
sudo vim nodes.py

修改内容:

#self.name = name
self.name = name.encode("utf-8").decode("unicode_escape")


这篇关于pytest+allure安装的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程