Jenkins+Allure+Pytest的持续集成

一、配置 allure 环境变量

1、下载

allure是一个命令行工具,可以去 github 下载最新版:https://github.com/allure-framework/allure2/releases

2、解压到本地

3、配置环境变量
  • 复制路径如:F:\allure-2.13.7\bin

  • 环境变量、Path、添加 F:\allure-2.13.7\bin、保存

  • cmd 中输入 where allure ,查看是否能找到

二、Jenkins配置Allure

1、安装allure插件

系统管理-->插件管理-->可安装插件 搜索allure进行安装

2、安装Allure Commandline

安装完allure插件后,进入系统管理-->全局工具配置,安装Allure Commandline

3、Jenkins 任务配置构建操作

新建job-->增加构建步骤-->Windows批处理命令,输入如下命令:

#!/bin/bash
cd .jenkins\workspace\allure-test\allure-results
pytest -s -q --alluredir=allure-test/allure-results --clean-alluredir
exit 0

注意:新增构建后操作,Allure report,输入report所在目录名称:与Windows批处理命令中设置的报告目录名称保持一致(这里使用的是report名称)

4、执行构建,查看报告

5、查看报告详情

最后感谢每一个认真阅读我文章的人,礼尚往来总是要有的,虽然不是什么很值钱的东西,如果你用得到的话可以直接拿走:

相关推荐
天天要nx1 小时前
D102【python 接口自动化学习】- pytest进阶之fixture用法
python·pytest
coder_pig2 小时前
📝小记:Ubuntu 部署 Jenkins 打包 Flutter APK
flutter·ubuntu·jenkins
程序猿000001号3 小时前
探索Python的pytest库:简化单元测试的艺术
python·单元测试·pytest
运维&陈同学17 小时前
【Elasticsearch05】企业级日志分析系统ELK之集群工作原理
运维·开发语言·后端·python·elasticsearch·自动化·jenkins·哈希算法
csdn_金手指1 天前
Jenkins持续交付web应用,通过docker制作相关的镜像进行发布部署
运维·jenkins
爱学测试的雨果1 天前
分布式测试插件 pytest-xdist 使用详解
分布式·pytest
龙少95432 天前
【SpringBoot中怎么使用ElasticSearch】
spring boot·elasticsearch·jenkins
创实信息2 天前
GitHub企业版:AWS CodeCommit迁移的最佳路径与技术优势
git·ci/cd·github·aws·github企业版·aws codecommit
紫菜(Nori)2 天前
Jenkins 中 写 shell 命令执行失败,检测失败问题
jenkins
jwensh2 天前
【Jenkins】pipeline 的基础语法以及快速构建一个 jenkinsfile
pipeline·jenkins