Quick links: Taurus Documentation | Knowledge Base | GitHub Issues
Hides the complexity of performance and functional tests with an automation-friendly convenience wrapper. Taurus relies on JMeter, Gatling, Locust.io, and Selenium WebDriver as its underlying tools. Free and open source under Apache 2.0 License.
Just install it using PyPi:
pip install bztFor more detailed instructions for Linux, Mac OS and Windows, see Installing and Upgrading.
Create a file named test.yml with following contents:
---
execution:
- concurrency: 10
ramp-up: 1m
hold-for: 1m30s
scenario: simple
scenarios:
simple:
think-time: 0.75
requests:
- http://blazedemo.com/
- http://blazedemo.com/vacation.htmlThen run bzt test.yml. After the tool finishes, observe resulting summary stats in console log (for more reporting options, see Generating Test Reports). All artifact files from the run will be placed in the directory mentioned in console log. Read more on command-line tool usage Command-Line Tool.
Available in the unstable snapshot (August 2025):
Taurus now fully excludes any labels specified in the ignored_labels option from the overall percentile calculation in the aggregator. If you use the ignored_labels feature, those labels will not affect the percentiles reported in the summary/overall statistics.
This change ensures that ignored labels are consistently excluded from both score and percentile calculations.