其他分享
首页 > 其他分享> > pytest+allure安装

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")

标签:npm,allure,sudo,pytest,install,report,安装
来源: https://www.cnblogs.com/laidy/p/16452577.html