Revision 3b26bf368fd59f2f39e63135c44d4da04424bad7 authored by Nicolas Dandrimont on 21 November 2019, 12:45:48 UTC, committed by Nicolas Dandrimont on 21 November 2019, 12:45:48 UTC
Allows us to call tests on things other than python3, with the same settings.
1 parent 1ff9e52
Raw File
mypy.ini
[mypy]
namespace_packages = True
warn_unused_ignores = True


# 3rd party libraries without stubs (yet)

[mypy-django.*]  # false positive, only used my hypotesis' extras
ignore_missing_imports = True

[mypy-dulwich.*]
ignore_missing_imports = True

[mypy-pkg_resources.*]
ignore_missing_imports = True

[mypy-pyblake2.*]
ignore_missing_imports = True

[mypy-pytest.*]
ignore_missing_imports = True
back to top