From 862c2c8899a7156399c505adacb121565d31c3a0 Mon Sep 17 00:00:00 2001 From: benya Date: Sun, 15 Feb 2026 21:02:04 +0300 Subject: [PATCH] ci(release): run full test suite in workflow - execute unittest discovery for all test_*.py files - include all current test modules in py_compile check --- .gitea/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 4dbd962..9449a9c 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -88,8 +88,8 @@ jobs: if: env.CONTINUE == 'true' shell: powershell run: | - python -m py_compile app_version.py main.py build.py tests/test_auth_relogin_smoke.py - python -m unittest 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 + python -m unittest discover -s tests -p "test_*.py" -v - name: Build release zip if: env.CONTINUE == 'true'