本篇内容介绍了“jenkins如何使用publish html report插件展示HTML报告”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔
本篇内容介绍了“jenkins如何使用publish html report插件展示HTML报告”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
Manage Jenkins --> Manage Plugins --> 可选插件 --> 搜索 publish html repor
说明:截图中是已安装好插件,所以在已安装中
新建test_01.py,代码如下
安装python包:pip install pytest-html
# -*- coding: utf-8 -*-# @Time : 2021/11/27# @Author : 大海# @File : test_40.pyimport osdef test_add(): c = 1 + 2 assert c == 2if __name__ == '__main__': os.system('pytest -s test_02.py --html=report.html --self-contained-html')
Pipeline
pipeline { agent any stages { stage('checkout code') { steps { checkout([$class: 'gitSCM', branches: [[name: '*/分支']], extensions: [], userRemoteConfigs: [[credentialsId: '认证信息', url: '你的仓库地址']]]) } } stage('auto test') { steps { bat 'Python test_01.py' } } } post { always { // reportDir 报告所在目录;reportFiles 报告名称;reportName 在Jenkins菜单栏显示的名称 ;reportTitles 点进测试报告显示的Title publishHTML([allowMissing: true, alwaysLinkToLastBuild: true, keepAll: false, reportDir: './', reportFiles: 'report.html', reportName: '测试报告', reportTitles: '测试报告']) } }}
左侧菜单列表,点击测试报告
官网说明:https://www.jenkins.io/doc/book/security/configuring-content-security-policy/
点击 Mange Jenkins 页面,找到Script Console
运行下面的脚本
System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", "")
shift +f5 刷新页面多次(没成功),可以清除浏览器历史,再次进入就会有CSS样式了
“Jenkins如何使用publish html report插件展示HTML报告”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!
--结束END--
本文标题: Jenkins如何使用publish html report插件展示HTML报告
本文链接: https://lsjlt.com/news/324891.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0