Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dev_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="je_auto_control_dev",
version="0.0.28",
version="0.0.30",
author="JE-Chen",
author_email="[email protected]",
description="auto testing",
Expand Down
5 changes: 4 additions & 1 deletion je_auto_control/utils/executor/action_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def execute_action(self, action_list: [list, dict]) -> dict:
for loop the list and execute action
"""
if type(action_list) is dict:
action_list = action_list.get("web_runner", None)
action_list = action_list.get("auto_control", None)
if action_list is None:
raise AutoControlActionNullException(executor_list_error)
execute_record_dict = dict()
Expand All @@ -90,6 +90,9 @@ def execute_action(self, action_list: [list, dict]) -> dict:
print(repr(error), file=sys.stderr)
print(action, file=sys.stderr)
record_action_to_list("execute_action", None, repr(error))
for key, value in execute_record_dict.items():
print(key)
print(value)
return execute_record_dict

def execute_files(self, execute_files_list: list) -> list:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="je_auto_control",
version="0.0.95",
version="0.0.97",
author="JE-Chen",
author_email="[email protected]",
description="auto testing",
Expand Down