Skip to content

Commit

Permalink
ensure type checks on all definitions in aramaki
Browse files Browse the repository at this point in the history
Especially in unit-tests I'm happy to not have type-def'd functions
as that really is just noise. However, I want those to be type checked.
  • Loading branch information
ctheune committed Feb 4, 2024
1 parent acd5ea5 commit 2eb7cde
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ profile = "black"
line_length = 79


[[tool.mypy.overrides]]
module = "aramaki.*"
check_untyped_defs = true

[[tool.mypy.overrides]]
module = "webob.*"
ignore_errors = true
Expand Down

0 comments on commit 2eb7cde

Please sign in to comment.