forked from phoenix/litellm-mirror
ci(mypy.ini): ignore missing imports
This commit is contained in:
parent
c3e3ca9722
commit
3d46094f5a
2 changed files with 2 additions and 1 deletions
|
@ -26,6 +26,7 @@ jobs:
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install -r .circleci/requirements.txt
|
python -m pip install -r .circleci/requirements.txt
|
||||||
pip install "pytest==7.3.1"
|
pip install "pytest==7.3.1"
|
||||||
|
pip install types-yaml
|
||||||
pip install "pytest-asyncio==0.21.1"
|
pip install "pytest-asyncio==0.21.1"
|
||||||
pip install mypy
|
pip install mypy
|
||||||
pip install "google-generativeai==0.3.2"
|
pip install "google-generativeai==0.3.2"
|
||||||
|
|
2
mypy.ini
2
mypy.ini
|
@ -1,6 +1,6 @@
|
||||||
[mypy]
|
[mypy]
|
||||||
warn_return_any = False
|
warn_return_any = False
|
||||||
ignore_missing_imports = False
|
ignore_missing_imports = True
|
||||||
|
|
||||||
[mypy-google.*]
|
[mypy-google.*]
|
||||||
ignore_missing_imports = True
|
ignore_missing_imports = True
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue