Skip to content

Commit

Permalink
Don't check types for tests (temporarily)
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre committed Dec 30, 2021
1 parent 23960ec commit 3b0c8e7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
15 changes: 15 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[mypy]

# TODO can't enable this yet
#strict = True

check_untyped_defs = True
scripts_are_modules = True

# TODO The tests currently do not pass Mypy.
# Don't forget to update tox.ini when they do!
files =
ldap_auth_provider.py

[mypy-ldap3.*]
ignore_missing_imports = True
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,6 @@ commands =
extras = dev

commands =
mypy ldap_auth_provider.py tests
# mypy ldap_auth_provider.py tests
# tests currently do not pass
mypy ldap_auth_provider.py

0 comments on commit 3b0c8e7

Please sign in to comment.