微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐