Remove mypy for now

This commit is contained in:
Jake Poznanski 2025-01-30 13:37:01 -08:00
parent d36e556f19
commit 7fbbb572ae
2 changed files with 6 additions and 4 deletions

View File

@ -39,10 +39,11 @@ jobs:
name: Lint
run: ruff check .
- python: "3.11"
task:
name: Type check
run: mypy .
# Removing mypy for now, as it isn't handling async things correctly
# - python: "3.11"
# task:
# name: Type check
# run: mypy .
- python: "3.11"
task:

View File

@ -142,6 +142,7 @@ ignore = ["E722"] #igore bare except
ignore_missing_imports = true
no_site_packages = true
check_untyped_defs = true
exclude = ["olmocr/train/molmo/", "tests/*"]
[[tool.mypy.overrides]]
module = "tests.*"