Skip to content
Merged

Dev #16

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
8 changes: 8 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:

steps:
- checkout
# upgrade
- run:
command: pip install --upgrade --user pip setuptools wheel
name: pip install --upgrade --user pip setuptools wheel
# pip require package
- run:
command: pip install --user -r dev_requirements.txt
Expand Down Expand Up @@ -89,6 +93,10 @@ jobs:

steps:
- checkout
# upgrade
- run:
command: pip install --upgrade --user pip setuptools wheel
name: pip install --upgrade --user pip setuptools wheel
# pip require package
- run:
command: pip install --user -r requirements.txt
Expand Down
94 changes: 11 additions & 83 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.03",
version="0.0.04",
author="JE-Chen",
author_email="[email protected]",
description="auto testing",
Expand Down
2 changes: 1 addition & 1 deletion je_auto_control/wrapper/auto_control_keyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def press_key(keycode: [int, str], is_shift: bool = False, **kwargs):
except AutoControlKeyboardException:
raise AutoControlKeyboardException(keyboard_press_key)
except TypeError:
raise AutoControlKeyboardException(keyboard_type_key)
raise AutoControlKeyboardException(repr(TypeError))


def release_key(keycode: [int, str], is_shift: bool = False, **kwargs):
Expand Down