安装
brew install python3
python3 -m pip install locustio
locust --help
测试
locust --help
locust -f hertz_lax.py --web-host=localhost
/Users/xx/Library/Python/2.7/bin/locust -f carrecord.py --web-host=localhost
如果采用no_web形式,则需使用--no-web参数,并会用到如下几个参数。
-c, --clients:指定并发用户数;
-n, --num-request:指定总执行测试次数;
-r, --hatch-rate:指定并发加压速率,默认值位1。
示例:
$ locust -H http://debugtalk.com -f demo.py --no-web -c 1 -n 2
http://127.0.0.1:8089/
/Users/xx/Library/Python/2.7/bin/locust -f /Users/xx/Documents/hzc/locust/api/abc.py --web-host=localhost
http://127.0.0.1:8089/
评论区