Skip to content

Commit 2b81228

Browse files
authored
Merge pull request #70 from Integrated-Testing-Environment/dev
Dev
2 parents 6783648 + 9d370f2 commit 2b81228

File tree

16 files changed

+195
-12
lines changed

16 files changed

+195
-12
lines changed

.circleci/config.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ jobs:
103103
- run:
104104
command: python ./test/gui_test/image/locate_image_center.py
105105
name: locate_image_center_test
106+
# callback test
107+
- run:
108+
command: python ./test/unit_test/callback/callback_test.py
109+
name: callback_test
106110

107111
# integrated_test
108112
# can't run this because circle ci bug
@@ -210,7 +214,10 @@ jobs:
210214
- run:
211215
command: python ./test/unit_test/argparse/argparse_test.py
212216
name: argparse_test
213-
217+
# callback test
218+
- run:
219+
command: python ./test/unit_test/callback/callback_test.py
220+
name: callback_test
214221

215222
# integrated_test
216223
# can't run this because circle ci bug

.github/workflows/auto-control-github-actions_dev.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,7 @@ jobs:
7474
run: python ./test/unit_test/argparse/argparse_test.py
7575
# html report test
7676
- name: html_report_test
77-
run: python ./test/unit_test/generate_report/html_report_test.py
77+
run: python ./test/unit_test/generate_report/html_report_test.py
78+
# call back test
79+
- name: call back test
80+
run: python ./test/unit_test/callback/callback_test.py

.github/workflows/auto-control-github-actions_stable.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,7 @@ jobs:
7474
run: python ./test/unit_test/argparse/argparse_test.py
7575
# html report test
7676
- name: html_report_test
77-
run: python ./test/unit_test/generate_report/html_report_test.py
77+
run: python ./test/unit_test/generate_report/html_report_test.py
78+
# call back test
79+
- name: call back test
80+
run: python ./test/unit_test/callback/callback_test.py

.idea/Python_JEAutoControl.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/db0f6e626a614f67bf2b6b1f54325a24)](https://www.codacy.com/gh/JE-Chen/AutoControl/dashboard?utm_source=github.com&utm_medium=referral&utm_content=JE-Chen/AutoControl&utm_campaign=Badge_Grade)
3131

32-
[![CircleCI](https://circleci.com/gh/JE-Chen/AutoControl/tree/main.svg?style=svg)](https://circleci.com/gh/JE-Chen/AutoControl/tree/main)
32+
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/Integrated-Testing-Environment/AutoControl/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/Integrated-Testing-Environment/AutoControl/tree/main)
3333

3434
[![AutoControl GitHub Actions Dev](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_dev.yml/badge.svg)](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_dev.yml)
3535

dev.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_auto_control_dev"
9-
version = "0.0.55"
9+
version = "0.0.56"
1010
authors = [
1111
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
1212
]

je_auto_control/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
# xml
7070
from je_auto_control.utils.generate_report.generate_xml_report import generate_xml
7171
from je_auto_control.utils.generate_report.generate_xml_report import generate_xml_report
72+
# callback
73+
from je_auto_control.utils.callback.callback_function_executor import callback_executor
7274

7375
__all__ = [
7476
"click_mouse", "mouse_table", "position", "press_mouse", "release_mouse",
@@ -92,5 +94,6 @@
9294
"generate_html", "generate_html_report",
9395
"generate_json", "generate_json_report",
9496
"generate_xml", "generate_xml_report",
95-
"get_dir_files_as_list", "create_template_dir", "start_autocontrol_socket_server"
97+
"get_dir_files_as_list", "create_template_dir", "start_autocontrol_socket_server",
98+
"callback_executor"
9699
]

je_auto_control/utils/callback/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)