Skip to content

Commit

Permalink
add nox to mypy ignores for now
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed Sep 25, 2024
1 parent 11eea65 commit 8b6c82a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,18 @@ ignore_errors = true
ignore_missing_imports = true
module = [
"*.migrations.*",
"tests.*",
"docs.*"
"docs.*",
"tests.*"
]

[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
# not sure why this is needed as nox has a `py.typed` marker, but
# putting this in here for now until I figure out where the issue
# is. i'm sure i've configured it or am calling it wrong somewhere.
# TODO: fix missing `nox` type library error and remove this line
"nox.*"
]

[tool.mypy_django_plugin]
Expand Down

0 comments on commit 8b6c82a

Please sign in to comment.