From 97c52c5a5114e2ce39884d0a6bd63044e04915b6 Mon Sep 17 00:00:00 2001 From: benya Date: Sun, 15 Feb 2026 21:02:35 +0300 Subject: [PATCH] ci(tests): run full suite in Desktop CI - switch unittest to discover test_*.py - include all current test modules in py_compile --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4077495..09adc05 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -28,8 +28,8 @@ jobs: - name: Validate syntax 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 run: | - python -m unittest tests/test_auth_relogin_smoke.py + python -m unittest discover -s tests -p "test_*.py" -v