Reputation: 1053
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.
Upvotes: 2
Views: 1050
Reputation: 1053
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.
Upvotes: 4
Reputation: 2604
according to the documentation you can use the option: –no-reports
Upvotes: 2