Mark Tickner
Mark Tickner

Reputation: 1053

Run Gatling SBT without generating reports

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

Answers (2)

Mark Tickner
Mark Tickner

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

James Warr
James Warr

Reputation: 2604

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

Upvotes: 2

Related Questions