ci(tests): run full suite in Desktop CI
Some checks failed
Desktop CI / tests (push) Successful in 13s
Desktop Release / release (push) Failing after 1m53s

- switch unittest to discover test_*.py

- include all current test modules in py_compile
This commit is contained in:
2026-02-15 21:02:35 +03:00
parent 862c2c8899
commit 97c52c5a51

View File

@@ -28,8 +28,8 @@ jobs:
- name: Validate syntax - name: Validate syntax
run: | run: |
python -m py_compile app_version.py main.py build.py tests/test_auth_relogin_smoke.py python -m py_compile app_version.py main.py build.py tests/test_auth_relogin_smoke.py tests/test_auto_update_service.py tests/test_chat_actions.py tests/test_token_store.py
- name: Run tests - name: Run tests
run: | run: |
python -m unittest tests/test_auth_relogin_smoke.py python -m unittest discover -s tests -p "test_*.py" -v