蝗虫不支持`--exit-code-on-error`参数吗?

时间:2019-09-13 22:01:01

标签: python locust

有人可以帮我确定--exit-code-on-error在做什么吗?

python -m locust.main -f tt/tt_test.py -H http://thuis:8088/public --no-web --clients=3 --hatch-rate=1 --run-time=1m --csv=social_soak --exit-code-on-error=0

得到以下错误:

Usage: locust [options] [LocustClass [LocustClass2 ... ]]

main.py: error: no such option: --exit-code-on-error

很明显,支持--exit-code-on-error,如下所示:https://github.com/locustio/locust/blob/610a87f433900d8baae51709c41e3b147a53bc97/locust/main.py#L286

如果我取消此选项,则会运行以下命令:

python -m locust.main -f tt/tt_test.py -H http://thuis:8088/public --no-web --clients=3 --hatch-rate=1 --run-time=1m --csv=social_soak

但是我真的很想使用--exit-code-on-error选项。任何想法如何做到这一点?预先感谢。

1 个答案:

答案 0 :(得分:0)

请确保您使用的是蝗虫的最新版本(目前为0.13.2)。

可能“错误退出代码”功能尚未纳入发行版,或者您没有最新发行版。