mypy-ci-fix
Some checks failed
Deploy on push / deploy (push) Failing after 3m59s

This commit is contained in:
2025-09-16 11:59:57 +03:00
parent 4ea32e3b83
commit 37d502801a
2 changed files with 23 additions and 6 deletions

View File

@@ -13,8 +13,14 @@ plugins = sqlalchemy.ext.mypy.plugin
# Игнорируем missing imports для внешних библиотек
ignore_missing_imports = True
# Временно исключаем только тесты и алембик
exclude = ^(tests/.*)$
# Оптимизации производительности
cache_dir = .mypy_cache
sqlite_cache = True
incremental = False
show_error_codes = True
# Исключаем тесты и тяжелые зависимости
exclude = ^(tests/.*|.*transformers.*|.*torch.*|.*huggingface.*|.*safetensors.*|.*PIL.*|.*google.*|.*sentence_transformers.*|.*dump/.*|.*node_modules/.*|.*dist/.*)$
# Настройки для конкретных модулей
[mypy-graphql.*]