From 31ef256c4d07b36ba2bdcd107b3da0e7c6824f68 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 28 Oct 2019 11:50:41 +0800 Subject: [PATCH] fix: locusts entry configuration --- CHANGELOG.md | 6 ++++++ httprunner/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6112afb..2a45bdb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 2.3.1 (2019-10-28) + +**Fixed** + +- fix locusts entry configuration + ## 2.3.0 (2019-10-27) **Added** diff --git a/httprunner/__init__.py b/httprunner/__init__.py index 8b0fe4c5..b6acc5ef 100644 --- a/httprunner/__init__.py +++ b/httprunner/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.3.0" +__version__ = "2.3.1" __description__ = "One-stop solution for HTTP(S) testing." __all__ = ["__version__", "__description__"] diff --git a/pyproject.toml b/pyproject.toml index 5d9c8153..1bb7add9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "httprunner" -version = "2.3.0" +version = "2.3.1" description = "One-stop solution for HTTP(S) testing." license = "Apache-2.0" readme = "README.md" @@ -41,7 +41,7 @@ coveralls = "^1.8.2" hrun = "httprunner.cli:main" ate = "httprunner.cli:main" httprunner = "httprunner.cli:main" -locusts = "httprunner.plugins.locusts:main" +locusts = "httprunner.plugins.locusts.cli:main" [build-system] requires = ["poetry>=0.12"]