From 31ef256c4d07b36ba2bdcd107b3da0e7c6824f68 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 28 Oct 2019 11:50:41 +0800 Subject: [PATCH 1/4] 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"] From 7170108006b311a4e66b381f173c1575ec1ffaa4 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 28 Oct 2019 13:01:58 +0800 Subject: [PATCH 2/4] doc: update classifiers --- pyproject.toml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1bb7add9..9b884410 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,8 +13,15 @@ documentation = "https://cn.httprunner.org" keywords = ["HTTP", "api", "test", "requests", "locustio"] classifiers = [ - "Topic :: Software Development :: Build Tools", - "Topic :: Software Development :: Libraries :: Python Modules" + "Development Status :: 5 - Production/Stable", + "Topic :: Software Development :: Testing", + "Topic :: Software Development :: Quality Assurance", + "Topic :: Software Development :: Libraries :: Python Modules", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8" ] include = ["CHANGELOG.md", "httprunner/static/*"] From b2d5c75d79e307705927a61e1ccc65c14d9fa363 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 28 Oct 2019 13:04:26 +0800 Subject: [PATCH 3/4] doc: update PyPi classifiers --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a45bdb1..f8f6e0d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ - fix locusts entry configuration +**Changed** + +- update PyPi classifiers + ## 2.3.0 (2019-10-27) **Added** From 26c77525f6f544cc51d807fa5082865cc0b2b4a1 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 28 Oct 2019 13:17:00 +0800 Subject: [PATCH 4/4] doc: update PyPi classifiers, add Operating System --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9b884410..3df20cab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,9 @@ classifiers = [ "Topic :: Software Development :: Testing", "Topic :: Software Development :: Quality Assurance", "Topic :: Software Development :: Libraries :: Python Modules", + "Operating System :: MacOS", + "Operating System :: POSIX :: Linux", + "Operating System :: Microsoft :: Windows", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6",