Explicitly install dependencies individually for CI debugging
This commit is contained in:
@@ -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
|
||||
@@ -41,8 +41,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
|
||||
@@ -59,8 +61,11 @@ 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user