From cdcca9852f5c3fd136604d19e728a76eadb89c09 Mon Sep 17 00:00:00 2001 From: aitbc Date: Mon, 20 Apr 2026 21:16:02 +0200 Subject: [PATCH] fix: add sqlmodel to integration-tests extra-packages - Add sqlmodel to --extra-packages in integration-tests.yml - Fixes ModuleNotFoundError in test_staking_lifecycle.py - Test imports sqlmodel at line 20 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 c074446f..a8981cac 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 sqlalchemy" + --extra-packages "requests pytest httpx pytest-asyncio pytest-timeout click locust sqlalchemy sqlmodel" # Ensure standard directories exist mkdir -p /var/lib/aitbc/data /var/lib/aitbc/keystore /etc/aitbc /var/log/aitbc