2

Is it possible to run the gatling-sbt plugin without generating the reports at the end?

I can't find anything that mentions this in the documentation or elsewhere online.

Mark Tickner
  • 1,023
  • 2
  • 15
  • 26

2 Answers2

4

After looking into Gatling further, I discovered it's actually possible to prevent the simulation itself from generating the reports through configuration:

gatling.charting.noReports = true

This is set to false by default.

Just to confirm that the sbt testOptions setting mentioned by @George Leung above also worked, but I thought this approach was neater.

Mark Tickner
  • 1,023
  • 2
  • 15
  • 26
2

according to the documentation you can use the option: –no-reports

James Warr
  • 2,552
  • 2
  • 7
  • 20