1

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.

user1934513
  • 693
  • 4
  • 21

1 Answers1

1

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  
Dmitri T
  • 159,985
  • 5
  • 83
  • 133