Skip to content

Commit b36ad8b

Browse files
authored
Merge pull request #97 from Integration-Automation/dev
Dev
2 parents 6dcde55 + 134df29 commit b36ad8b

5 files changed

Lines changed: 32 additions & 25 deletions

File tree

.github/workflows/dev_python3_12.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: AutomationEditor Dev Python3.9
1+
name: AutomationEditor Dev Python3.12
22

33
on:
44
push:

.github/workflows/stable_python3_12.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: AutomationEditor Stable Python3.9
1+
name: AutomationEditor Stable Python3.12
22

33
on:
44
push:
Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,37 @@
11
# add command exception
2-
add_command_type_exception_tag: str = "command execute_return_value type should be as method or function"
3-
add_command_not_allow_package_exception_tag: str = "choose to add command package not allow"
2+
add_command_type_exception_tag: str = "command execute_return_value type must be a method or function"
3+
add_command_not_allow_package_exception_tag: str = "chosen command package is not allowed"
4+
45
# send html report exception
56
send_html_exception_tag: str = """
6-
make sure you have installed je_mail_thunder \n
7-
can"t send html report check login user and password is correct \n
8-
and current working folder have default_name.html (html report default execute_detail) \n
9-
or you should get the function file_path to read
7+
make sure you have installed je_mail_thunder
8+
can't send HTML report: check that the login username and password are correct
9+
and that the current working folder contains default_name.html (the default HTML report execute_detail)
10+
or use the file_path function to read
1011
"""
12+
1113
# test executor exception
1214
auto_control_process_executor_exception_tag: str = "can't run AutoControl"
1315
api_testka_process_executor_exception_tag: str = "can't run APITestka"
1416
web_runner_process_executor_exception_tag: str = "can't run WebRunner"
1517
load_density_process_executor_exception_tag: str = "can't run LoadDensity"
18+
1619
# Install
17-
not_install_exception: str = "Please install package first, Can't find package"
20+
not_install_exception: str = "please install the package first; can't find the package"
21+
1822
# ui exception
19-
wrong_test_data_format_exception_tag: str = "get the wrong test data format"
23+
wrong_test_data_format_exception_tag: str = "incorrect test data format"
24+
2025
# exec exception
21-
exec_error: str = "AutomationEditor exec error"
26+
exec_error: str = "AutomationEditor execution error"
2227
file_not_fond_error: str = "File not found"
2328
compiler_not_found_error: str = "Compiler not found"
24-
not_install_package_error: str = "not install required package"
29+
not_install_package_error: str = "required package not installed"
30+
2531
# json exception
26-
cant_reformat_json_error: str = "Can't reformat json is type right?"
27-
wrong_json_data_error: str = "Can't parser json"
32+
cant_reformat_json_error: str = "can't reformat JSON: is the type correct?"
33+
wrong_json_data_error: str = "can't parse JSON"
34+
2835
# XML
29-
cant_read_xml_error: str = "can't read xml"
30-
xml_type_error: str = "xml type error"
36+
cant_read_xml_error: str = "can't read XML"
37+
xml_type_error: str = "XML type error"

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Rename to build stable version
2-
# This is stable version
1+
# Rename to dev version
2+
# This is dev version
33
[build-system]
44
requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "automation_ide"
9-
version = "0.0.43"
8+
name = "automation_ide_dev"
9+
version = "0.0.49"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
@@ -35,5 +35,6 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
3535
file = "README.md"
3636
content-type = "text/markdown"
3737

38+
3839
[tool.setuptools.packages]
3940
find = { namespaces = false }

dev.toml renamed to stable.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Rename to dev version
2-
# This is dev version
1+
# Rename to build stable version
2+
# This is stable version
33
[build-system]
44
requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "automation_ide_dev"
9-
version = "0.0.48"
8+
name = "automation_ide"
9+
version = "0.0.44"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
@@ -35,6 +35,5 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
3535
file = "README.md"
3636
content-type = "text/markdown"
3737

38-
3938
[tool.setuptools.packages]
4039
find = { namespaces = false }

0 commit comments

Comments
 (0)