@@ -12,19 +12,19 @@ permissions:
1212 contents : read
1313
1414jobs :
15- build_stable_version :
15+ build_dev_version :
1616 runs-on : windows-latest
1717
1818 steps :
1919 - uses : actions/checkout@v3
20- - name : Set up Python 3.11
20+ - name : Set up Python 3.10
2121 uses : actions/setup-python@v3
2222 with :
23- python-version : " 3.11 "
23+ python-version : " 3.10 "
2424 - name : Install dependencies
2525 run : |
2626 python -m pip install --upgrade pip wheel
27- pip install -r requirements .txt
27+ pip install -r dev_requirements .txt
2828
2929 - name : Test Screen Module
3030 run : python ./test/unit_test/screen/screen_test.py
@@ -48,16 +48,20 @@ jobs:
4848 - name : Test Keyboard hotkey Function
4949 run : python ./test/unit_test/keyboard/hotkey_test.py
5050
51- # - name: Test Mouse Module
52- # run: python ./test/unit_test/mouse/mouse_test.py
51+ - name : Test Mouse Module
52+ run : |
53+ python ./test/unit_test/mouse/mouse_test.py
54+ exit 0
5355 - name : Test Scroll Module
5456 run : python ./test/unit_test/exception/auto_control_exception_test.py
5557
5658 - name : Test Exceptions
5759 run : python ./test/unit_test/exception/auto_control_exception_test.py
5860
5961 - name : Test Critical Exit
60- run : python ./test/unit_test/critical_exit/critical_exit_test.py
62+ run : |
63+ python ./test/unit_test/critical_exit/critical_exit_test.py
64+ exit 0
6165 - name : Test Real Critical Situation
6266 run : |
6367 python ./test/unit_test/critical_exit/real_critical_test.py
9195 run : python ./test/unit_test/get_info/mouse_info.py
9296 - name : Test Get Keyboard Info
9397 run : python ./test/unit_test/get_info/keyboard_info.py
98+
0 commit comments