mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-07 15:31:23 +08:00
change: upgrade python support version to ^3.7
This commit is contained in:
2
.github/workflows/integration_test.yml
vendored
2
.github/workflows/integration_test.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
max-parallel: 6
|
max-parallel: 6
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.6, 3.7, 3.8, 3.9]
|
python-version: [3.7, 3.8, 3.9, 3.10]
|
||||||
os: [ubuntu-latest, macos-latest] # TODO: windows-latest
|
os: [ubuntu-latest, macos-latest] # TODO: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
2
.github/workflows/unittest.yml
vendored
2
.github/workflows/unittest.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
max-parallel: 12
|
max-parallel: 12
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.6, 3.7, 3.8, 3.9]
|
python-version: [3.7, 3.8, 3.9, 3.10]
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
- fix: failure in getting client and server IP/port when requesting HTTPS
|
- fix: failure in getting client and server IP/port when requesting HTTPS
|
||||||
- fix: upgrade dependencies for security
|
- fix: upgrade dependencies for security
|
||||||
- fix: parameterize failure caused by pydantic version
|
- fix: parameterize failure caused by pydantic version
|
||||||
|
- change: upgrade python support version to ^3.7
|
||||||
|
|
||||||
## 3.1.6 (2021-07-18)
|
## 3.1.6 (2021-07-18)
|
||||||
|
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ def session_fixture(request):
|
|||||||
testcase_summary_json["records"] = testcase_summary_json.pop("step_datas")
|
testcase_summary_json["records"] = testcase_summary_json.pop("step_datas")
|
||||||
summary["details"].append(testcase_summary_json)
|
summary["details"].append(testcase_summary_json)
|
||||||
|
|
||||||
summary_path = "/Users/debugtalk/MyProjects/HttpRunner-dev/HttpRunner/examples/postman_echo/logs/request_methods/hardcode.summary.json"
|
summary_path = r"/Users/debugtalk/MyProjects/HttpRunner-dev/httprunner/examples/postman_echo/logs/request_methods/hardcode.summary.json"
|
||||||
summary_dir = os.path.dirname(summary_path)
|
summary_dir = os.path.dirname(summary_path)
|
||||||
os.makedirs(summary_dir, exist_ok=True)
|
os.makedirs(summary_dir, exist_ok=True)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/request_with_functions.yml
|
# FROM: request_methods/request_with_functions.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/request_with_testcase_reference.yml
|
# FROM: request_methods/request_with_testcase_reference.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/hardcode.yml
|
# FROM: request_methods/hardcode.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/request_with_functions.yml
|
# FROM: request_methods/request_with_functions.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/request_with_parameters.yml
|
# FROM: request_methods/request_with_parameters.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/request_with_testcase_reference.yml
|
# FROM: request_methods/request_with_testcase_reference.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/request_with_variables.yml
|
# FROM: request_methods/request_with_variables.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/validate_with_functions.yml
|
# FROM: request_methods/validate_with_functions.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# NOTE: Generated By HttpRunner v3.1.4
|
# NOTE: Generated By HttpRunner v3.1.7
|
||||||
# FROM: request_methods/validate_with_variables.yml
|
# FROM: request_methods/validate_with_variables.yml
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
1346
poetry.lock
generated
1346
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -20,15 +20,16 @@ classifiers = [
|
|||||||
"Operating System :: MacOS",
|
"Operating System :: MacOS",
|
||||||
"Operating System :: POSIX :: Linux",
|
"Operating System :: POSIX :: Linux",
|
||||||
"Operating System :: Microsoft :: Windows",
|
"Operating System :: Microsoft :: Windows",
|
||||||
"Programming Language :: Python :: 3.6",
|
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8"
|
"Programming Language :: Python :: 3.8",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
|
"Programming Language :: Python :: 3.10"
|
||||||
]
|
]
|
||||||
|
|
||||||
include = ["docs/CHANGELOG.md"]
|
include = ["docs/CHANGELOG.md"]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.6.2"
|
python = "^3.7"
|
||||||
requests = "^2.22.0"
|
requests = "^2.22.0"
|
||||||
pyyaml = "^5.4.1"
|
pyyaml = "^5.4.1"
|
||||||
jinja2 = "^2.10.3"
|
jinja2 = "^2.10.3"
|
||||||
|
|||||||
Reference in New Issue
Block a user