fix(ci): add databento to CI dependencies for test and type-check

The test job runs tests that import DatabentoHistoricalPriceSource,
and type-check analyzes app/services/backtesting/databento_source.py.
Both need the databento package installed.
This commit is contained in:
Bu5hm4nn
2026-03-29 12:05:22 +02:00
parent 850be70fea
commit 9fed45ef9f

View File

@@ -44,7 +44,7 @@ jobs:
set -x set -x
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install pytest pytest-asyncio httpx pip install pytest pytest-asyncio httpx
pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml databento
pip list pip list
- name: Run tests - name: Run tests
run: | run: |
@@ -71,7 +71,7 @@ jobs:
set -x set -x
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install mypy pip install mypy
pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml databento
pip list pip list
- name: Show working directory - name: Show working directory
run: pwd && ls -la run: pwd && ls -la