Hi,
So, currently I have a project with the current layout just for Gatling simulations that I'm starting out.
$ tree
.
├── build.sbt
├── project
│ ├── build.properties
│ └── plugins.sbt
└── src
└── test
└── scala
└── hellogatling
└── HelloGatlingSimulation.scala
Currently, I only have one simulation (i.e.
HelloGatlingSimulation.scala), which I can run just fine with
but as I add more simulations under
src/test/scala I want to be able to run a particular simulation, not *all* of them.
Is this possible with gatling-sbt?
Thanks
Carlos Torres