Locust 不支持 `--exit-code-on-error` 参数?

Locust not supporting `--exit-code-on-error` argument?

有人可以帮助确定我在 --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 选项。知道怎么做吗?提前致谢。

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

可能 —exit-code-on-error 功能尚未发布,或者您没有最新版本。