BlazeMeter does not support the inline scenario configuration. Please make sure you configure the scenarios outside the execution section.

I was recently doing some load testing for a client and when uploading our Taurus YAML tests into the Blazemeter console we recieved the following error:

BlazeMeter does not support the inline scenario configuration. Please make sure you configure the scenarios outside the execution section.

Our Taurus test was in the format:

---
execution:
  - scenario:
      retrieve-resources: false
      requests:
        - https://yourdomain/yourpath
    concurrency: 1000
    hold-for: 1m
    ramp-up: 30s
    throughput: 10

Turns out that even though these tests will work locally in Taurus you will need separate your scenarios from the execution to work in the cloud with Blazemeter:

---
execution:
- concurrency: 1000
  hold-for: 1m
  ramp-up: 30s
  throughput: 10
  scenario: web-test

scenarios:
  web-test:
    retrieve-resources: false
    requests:
    - https://yourdomain/yourpath
comments powered by Disqus