运行 不生成报告的 Gatling SBT
Run Gatling SBT without generating reports
是否可以 运行 gatling-sbt 插件而不在最后生成报告?
我在文档或在线其他地方找不到任何提及此内容的内容。
根据the documentation,您可以使用选项:–no-reports
进一步研究 Gatling 后,我发现实际上可以通过 configuration:
阻止模拟本身生成报告
gatling.charting.noReports = true
这被 default 设置为 false。
只是为了确认上面@George Leung 提到的 sbt testOptions 设置也有效,但我认为这种方法更简洁。
是否可以 运行 gatling-sbt 插件而不在最后生成报告?
我在文档或在线其他地方找不到任何提及此内容的内容。
根据the documentation,您可以使用选项:–no-reports
进一步研究 Gatling 后,我发现实际上可以通过 configuration:
阻止模拟本身生成报告gatling.charting.noReports = true
这被 default 设置为 false。
只是为了确认上面@George Leung 提到的 sbt testOptions 设置也有效,但我认为这种方法更简洁。