Hi All,
I am trying to run my gatling scripts using a taurus config and cannot figure out the right taurus config.
I have searched on web for any references, nothing turned up.
Essentially I have bunch of scala classes (gatling script and its dependencies) which are also using a configuration and json file to run a test.
I have tried it with the below taurus config with no success.
---
execution:
- executor: gatling
scenario: sample
file:
- /test2 (I have bundled my scala project into a jar and put it in this location)
scenarios:
sample:
script: tests/gatling/BasicTest.scala (not sure what to give the location since its bundled inside a jar)
simulation: tests.gatling.BasicSimulation
The test doesnt recognize the BasicTest.scala even with the file directive. (pretty sure the above config is wrong).
I'm basically looking for the equivalent of "sbt test" in taurus config.
Any help would be appreciated.