Home > other >  Run JMeter tests with Taurus sequentially
Run JMeter tests with Taurus sequentially

Time:11-09

I would like to run a few JMeter scripts sequentially , one after the other, in Taurus. I know that, as described here , it is possible to run multiple JMeter tests in parallel using Taurus but I would need to have a setup script finish before any other future scripts.

Thank you.

CodePudding user response:

As per documentation:

By default, Taurus runs items under execution in parallel. To switch it into sequential mode, run it with -sequential command-line option.

If you want to make the change permanent - you can add the following block to .bzt-rc configuration file (lives in your HOME folder):

modules:
  local:
    sequential: true  
  • Related