change: split locust main from httprunner cli

This commit is contained in:
debugtalk
2019-10-25 15:42:47 +08:00
parent 3d2615a27c
commit d2d925d5df
4 changed files with 121 additions and 138 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "httprunner"
version = "2.2.6"
version = "2.2.7"
description = "One-stop solution for HTTP(S) testing."
license = "Apache-2.0"
readme = "README.md"
@@ -39,10 +39,10 @@ coveralls = "^1.8"
contextlib2 = "^0.5.5"
[tool.poetry.scripts]
hrun = "httprunner.cli:main_hrun"
ate = "httprunner.cli:main_hrun"
httprunner = "httprunner.cli:main_hrun"
locusts = "httprunner.cli:main_locust"
hrun = "httprunner.cli:main"
ate = "httprunner.cli:main"
httprunner = "httprunner.cli:main"
locusts = "httprunner.locusts:main"
[build-system]
requires = ["poetry>=0.12"]