Explicitly install dependencies individually for CI debugging

This commit is contained in:
Bu5hm4nn
2026-03-22 10:42:27 +01:00
parent c9a6aa8d73
commit 5cb358b2f1
2 changed files with 14 additions and 4 deletions

View File

@@ -42,8 +42,10 @@ jobs:
python-version: '3.12'
- name: Install dependencies
run: |
set -x
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install pytest pytest-asyncio httpx
pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml
pip list
- name: Run tests
run: pytest tests -v --tb=short
@@ -60,7 +62,10 @@ jobs:
python-version: '3.12'
- name: Install dependencies
run: |
set -x
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install mypy
pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml
pip list
- name: Run mypy
run: mypy app scripts --ignore-missing-imports