Skip to content

Commit d7d73e6

Browse files
committed
update stable and dev
now action executor will print event and response before return
1 parent 3c833c9 commit d7d73e6

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.idea/workspace.xml

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

dev_setup.py

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

66
setuptools.setup(
77
name="je_auto_control_dev",
8-
version="0.0.28",
8+
version="0.0.30",
99
author="JE-Chen",
1010
author_email="zenmailman@gmail.com",
1111
description="auto testing",

je_auto_control/utils/executor/action_executor.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def execute_action(self, action_list: [list, dict]) -> dict:
6969
for loop the list and execute action
7070
"""
7171
if type(action_list) is dict:
72-
action_list = action_list.get("web_runner", None)
72+
action_list = action_list.get("auto_control", None)
7373
if action_list is None:
7474
raise AutoControlActionNullException(executor_list_error)
7575
execute_record_dict = dict()
@@ -90,6 +90,9 @@ def execute_action(self, action_list: [list, dict]) -> dict:
9090
print(repr(error), file=sys.stderr)
9191
print(action, file=sys.stderr)
9292
record_action_to_list("execute_action", None, repr(error))
93+
for key, value in execute_record_dict.items():
94+
print(key)
95+
print(value)
9396
return execute_record_dict
9497

9598
def execute_files(self, execute_files_list: list) -> list:

setup.py

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

66
setuptools.setup(
77
name="je_auto_control",
8-
version="0.0.95",
8+
version="0.0.97",
99
author="JE-Chen",
1010
author_email="zenmailman@gmail.com",
1111
description="auto testing",

0 commit comments

Comments
 (0)