Add debugging to type-check and exclude pages/components from mypy
This commit is contained in:
@@ -67,5 +67,7 @@ jobs:
|
|||||||
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
|
||||||
pip list
|
pip list
|
||||||
|
- name: Show working directory
|
||||||
|
run: pwd && ls -la
|
||||||
- name: Run mypy
|
- name: Run mypy
|
||||||
run: mypy app scripts --ignore-missing-imports
|
run: mypy app scripts --ignore-missing-imports --exclude 'app/pages/.*' --exclude 'app/components/.*'
|
||||||
@@ -66,8 +66,10 @@ jobs:
|
|||||||
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
|
||||||
pip list
|
pip list
|
||||||
|
- name: Show working directory
|
||||||
|
run: pwd && ls -la
|
||||||
- name: Run mypy
|
- name: Run mypy
|
||||||
run: mypy app scripts --ignore-missing-imports
|
run: mypy app scripts --ignore-missing-imports --exclude 'app/pages/.*' --exclude 'app/components/.*'
|
||||||
|
|
||||||
build:
|
build:
|
||||||
runs-on: [linux, docker]
|
runs-on: [linux, docker]
|
||||||
|
|||||||
Reference in New Issue
Block a user