From 64770afa6a556ec4ed52c4df194d12aff54e3951 Mon Sep 17 00:00:00 2001 From: aitbc Date: Mon, 20 Apr 2026 11:05:09 +0200 Subject: [PATCH] ci: add click to staking tests venv dependencies Added click package to --extra-packages in both staking service tests and integration tests jobs to ensure CLI functionality is available during test execution. --- .gitea/workflows/staking-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/staking-tests.yml b/.gitea/workflows/staking-tests.yml index 066684c6..def4a402 100644 --- a/.gitea/workflows/staking-tests.yml +++ b/.gitea/workflows/staking-tests.yml @@ -43,7 +43,7 @@ jobs: --repo-dir "$PWD" \ --venv-dir "$PWD/venv" \ --skip-requirements \ - --extra-packages "pytest pytest-asyncio sqlmodel" + --extra-packages "pytest pytest-asyncio sqlmodel click" echo "✅ Python environment ready" - name: Run staking service tests @@ -90,7 +90,7 @@ jobs: --repo-dir "$PWD" \ --venv-dir "$PWD/venv" \ --skip-requirements \ - --extra-packages "pytest pytest-asyncio sqlmodel" + --extra-packages "pytest pytest-asyncio sqlmodel click" echo "✅ Python environment ready" - name: Run staking integration tests