fix: locusts entry configuration

This commit is contained in:
debugtalk
2019-10-28 11:50:41 +08:00
parent 5042f2feb1
commit 31ef256c4d
3 changed files with 9 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
# Release History # Release History
## 2.3.1 (2019-10-28)
**Fixed**
- fix locusts entry configuration
## 2.3.0 (2019-10-27) ## 2.3.0 (2019-10-27)
**Added** **Added**

View File

@@ -1,4 +1,4 @@
__version__ = "2.3.0" __version__ = "2.3.1"
__description__ = "One-stop solution for HTTP(S) testing." __description__ = "One-stop solution for HTTP(S) testing."
__all__ = ["__version__", "__description__"] __all__ = ["__version__", "__description__"]

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "httprunner" name = "httprunner"
version = "2.3.0" version = "2.3.1"
description = "One-stop solution for HTTP(S) testing." description = "One-stop solution for HTTP(S) testing."
license = "Apache-2.0" license = "Apache-2.0"
readme = "README.md" readme = "README.md"
@@ -41,7 +41,7 @@ coveralls = "^1.8.2"
hrun = "httprunner.cli:main" hrun = "httprunner.cli:main"
ate = "httprunner.cli:main" ate = "httprunner.cli:main"
httprunner = "httprunner.cli:main" httprunner = "httprunner.cli:main"
locusts = "httprunner.plugins.locusts:main" locusts = "httprunner.plugins.locusts.cli:main"
[build-system] [build-system]
requires = ["poetry>=0.12"] requires = ["poetry>=0.12"]