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