运行 JMeter 按顺序使用 Taurus 进行测试
Run JMeter tests with Taurus sequentially
我想在 Taurus 中依次 运行 几个 JMeter 脚本,一个接一个。
我知道,如 here 所述,可以使用 Taurus 并行 运行 多个 JMeter 测试,但我需要在任何其他未来脚本之前完成设置脚本。
谢谢。
By default, Taurus runs items under execution in parallel. To switch it into sequential mode, run it with -sequential
command-line option.
如果您想永久更改 - 您可以将以下块添加到 .bzt-rc configuration file (lives in your HOME folder):
modules:
local:
sequential: true
我想在 Taurus 中依次 运行 几个 JMeter 脚本,一个接一个。 我知道,如 here 所述,可以使用 Taurus 并行 运行 多个 JMeter 测试,但我需要在任何其他未来脚本之前完成设置脚本。
谢谢。
By default, Taurus runs items under execution in parallel. To switch it into sequential mode, run it with
-sequential
command-line option.
如果您想永久更改 - 您可以将以下块添加到 .bzt-rc configuration file (lives in your HOME folder):
modules:
local:
sequential: true