fix: add PyJWT to python-tests venv packages
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Successful in 1m18s
Multi-Node Stress Testing / stress-test (push) Successful in 3s
Python Tests / test-python (push) Failing after 1m5s

tests/fixtures/auth_fixtures.py imports jwt (PyJWT) which was missing
from --extra-packages list, causing ModuleNotFoundError at conftest load
This commit is contained in:
aitbc
2026-05-19 16:31:09 +02:00
parent 040eaf04f1
commit 6fd4c4f841

View File

@@ -54,7 +54,7 @@ jobs:
--venv-dir "$PWD/venv" \
--skip-requirements \
--mode copy \
--extra-packages "pytest pytest-cov pytest-mock pytest-timeout pytest-asyncio locust pydantic-settings fastapi uvicorn aiohttp>=3.12.14 sqlmodel>=0.0.38"
--extra-packages "pytest pytest-cov pytest-mock pytest-timeout pytest-asyncio locust pydantic-settings fastapi uvicorn aiohttp>=3.12.14 sqlmodel>=0.0.38 PyJWT"
echo "✅ Python environment ready"
- name: Run linting