如何让 cucumber html报告像Jenkins报告运行在本地的所有方案

jogvjijk  于 2023-11-17  发布在  Jenkins
关注(0)|答案(1)|浏览(132)

我在 cucumber 选项中使用了此代码(plugin = {“pretty”,“json:target/cucumber.json”,“html:target/CucumberTestReport.html”})enter image description here我想要一个像Jenkins html报告的报告
我想通过运行本地所有方案JenkinsHTML报告
enter image description here

lhcgjxsq

lhcgjxsq1#

首先在你的jenkins上安装publish html插件,然后使用它:

publishHTML( target:[
                  allowMissing: false,
                  alwaysLinkToLastBuild: true,
                  keepAll: true,
                  reportDir: 'your dir',
                  reportFiles: '*.html',
                  reportName: 'HTMLReport', 
                  reportTitles: 'reportTitle']
                  )

字符串

相关问题