1.官网下载allure报告解压包、并解压
下载地址:https://github.com/allure-framework/allure2/releases
2.下载java环境,有则跳过
https://www.java.com/zh-CN/download/help/mac_install.html
3.配置环境变量
第一步:启动终端Terminal,直接输入~/.bash_profile
会显示 No such file or directory
第二步:进入当前用户的home目录
输入cd ~
第三步:创建.bash_profile
输入touch .bash_profile
第四步:打开编辑.bash_profile文件
输入open -e .bash_profile即可打开,打开后输入以下2行即可
PATH="/Users/XX/Desktop/XX/allure-2.13.6/bin:${PATH}" # 标红区域地址:你allure/bin的地址
export PATH
保存文件,关闭.bash_profile
第五步:更新刚配置的环境变量
输入source .bash_profile
4.打开终端执行
pip3 install allure-pytest
5.配置zshrc文件,不配置的话,bash_profile不生效
第一步:启动终端Terminal,直接输入~/.zshrc
会显示 No such file or directory
第二步:进入当前用户的home目录
输入cd ~
第三步:创建.zshrc
输入touch .zshrc
第四步:打开编辑.zshrc文件
输入open -e .zshrc即可打开,打开后输入以下1行即可
source ~/.zshrc
保存文件,关闭.zshrc
6.验证allure版本:如果没有第5步,那么关掉终端重启的话,allure找不到了,必须进入到cd ~才能执行,到指定下就没有意义了。
allure --version
7.pycharm最好重启一下