step1:安装allure插件
系统管理 —> 插件管理 —> 搜索 allure,勾选上然后选择 install with
2、配置allure
系统管理
global tool configuration:找到allure commandline之后安装,勾选自动安装,2.4.1版本,点击安装
一定要配好JDK
3、配置allure的目录
系统管理 系统设置 找到allure report后,配置
key一定要设置为:WORKSPACE value设置为报告生成的路径,注意写/ 保存
4、使用
打开目标job的配置,增加构建后操作步骤中allure report ,path只写value值中的最后一个名称
5、安装python库
pip install pytest
pip install pytest-allure-adaptor
6、在构建步骤中填写如下信息:
cd 脚本所在目录
python -m pytest --alluredir ${WORKSPACE}/value值中的最后一个名称
7、最后执行job即可