Skip to content

Commit 94c1e63

Browse files
authored
Merge pull request #92 from Integration-Automation/dev
Dev
2 parents 268d4f8 + baf77aa commit 94c1e63

File tree

5 files changed

+34
-27
lines changed

5 files changed

+34
-27
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: LoadDensity Dev Python 3.9
1+
name: LoadDensity Dev Python 3.12
22

33
on:
44
push:
@@ -17,10 +17,10 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Set up Python 3.9
20+
- name: Set up Python 3.12
2121
uses: actions/setup-python@v3
2222
with:
23-
python-version: "3.9"
23+
python-version: "3.12"
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip wheel
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: LoadDensity Stable Python3.9
1+
name: LoadDensity Stable Python3.12
22

33
on:
44
push:
@@ -17,10 +17,10 @@ jobs:
1717

1818
steps:
1919
- uses: actions/checkout@v3
20-
- name: Set up Python 3.9
20+
- name: Set up Python 3.12
2121
uses: actions/setup-python@v3
2222
with:
23-
python-version: "3.9"
23+
python-version: "3.12"
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip wheel

dev.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_load_density_dev"
9-
version = "0.0.73"
9+
version = "0.0.75"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]
1313
description = "Load & Stress Automation Freamework"
14-
requires-python = ">=3.9"
14+
requires-python = ">=3.10"
1515
license-files = ["LICENSE"]
1616
dependencies = [
1717
"locust",
1818
]
1919
classifiers = [
20-
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
2121
"Development Status :: 2 - Pre-Alpha",
2222
"Environment :: Win32 (MS Windows)",
2323
"Environment :: MacOS X",
Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
# locust error
2-
not_found_locust_error: str = "locust not found"
2+
not_found_locust_error: str = "Locust not found"
3+
34
# json error
4-
cant_reformat_json_error: str = "can't reformat json is type right?"
5-
wrong_json_data_error: str = "can't parser json"
6-
cant_find_json_error: str = "can't find json"
7-
cant_save_json_error: str = "can't save json"
8-
cant_generate_json_report: str = "can't generate json report"
5+
cant_reformat_json_error: str = "can't reformat JSON: is the type correct?"
6+
wrong_json_data_error: str = "can't parse JSON"
7+
cant_find_json_error: str = "can't find JSON file"
8+
cant_save_json_error: str = "can't save JSON file"
9+
cant_generate_json_report: str = "can't generate JSON report"
10+
911
# executor error
10-
executor_data_error: str = "executor receive wrong data"
11-
executor_list_error: str = "executor receive wrong data list is none or wrong type"
12+
executor_data_error: str = "executor received invalid data"
13+
executor_list_error: str = "executor received invalid data: list is empty or wrong type"
14+
1215
# HTML
13-
html_generate_no_data_tag: str = "record is None"
16+
html_generate_no_data_tag: str = "no records to generate HTML report"
17+
1418
# add command
15-
add_command_exception_tag: str = "command value type should be as method or function"
19+
add_command_exception_tag: str = "command value type must be a method or function"
20+
1621
# argparse
17-
argparse_get_wrong_data: str = "argparse receive wrong data"
22+
argparse_get_wrong_data: str = "argparse received invalid data"
23+
1824
# XML
19-
cant_read_xml_error: str = "can't read xml"
20-
xml_type_error: str = "xml type error"
25+
cant_read_xml_error: str = "can't read XML"
26+
xml_type_error: str = "XML type error"
27+
2128
# Callback executor
22-
get_bad_trigger_method: str = "get bad trigger method, only accept kwargs and args"
23-
get_bad_trigger_function: str = "get bad trigger function only accept function in event_dict"
29+
get_bad_trigger_method: str = "invalid trigger method: only kwargs and args accepted"
30+
get_bad_trigger_function: str = "invalid trigger function: only functions in event_dict accepted"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_load_density"
9-
version = "0.0.60"
9+
version = "0.0.62"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]
1313
description = "Load & Stress Automation Freamework"
14-
requires-python = ">=3.9"
14+
requires-python = ">=3.10"
1515
license-files = ["LICENSE"]
1616
dependencies = [
1717
"locust",
1818
]
1919
classifiers = [
20-
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
2121
"Development Status :: 2 - Pre-Alpha",
2222
"Environment :: Win32 (MS Windows)",
2323
"Environment :: MacOS X",

0 commit comments

Comments
 (0)