From c9ce95749a58d7e0ddcfd4a6f81e38626f5256ba Mon Sep 17 00:00:00 2001 From: aitbc Date: Mon, 20 Apr 2026 21:14:22 +0200 Subject: [PATCH] fix: add sqlalchemy to integration-tests extra-packages - Add sqlalchemy to --extra-packages in integration-tests.yml - Fixes ModuleNotFoundError in test_staking_lifecycle.py - Test imports sqlalchemy at line 18 but package was missing from cached environment --- .gitea/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/integration-tests.yml b/.gitea/workflows/integration-tests.yml index 17933a80..c074446f 100644 --- a/.gitea/workflows/integration-tests.yml +++ b/.gitea/workflows/integration-tests.yml @@ -120,7 +120,7 @@ jobs: --repo-dir "$PWD" \ --venv-dir "$PWD/venv" \ --skip-requirements \ - --extra-packages "requests pytest httpx pytest-asyncio pytest-timeout click locust" + --extra-packages "requests pytest httpx pytest-asyncio pytest-timeout click locust sqlalchemy" # Ensure standard directories exist mkdir -p /var/lib/aitbc/data /var/lib/aitbc/keystore /etc/aitbc /var/log/aitbc