https://github.com/SoftwareHeritage/swh-model
Revision 47795c14474509d637066e7e4f9c5c81902e3c23 authored by Pratyush Desai on 09 May 2022, 10:13:51 UTC, committed by Pratyush Desai on 09 May 2022, 10:13:51 UTC
1 parent fe4ebb2
Raw File
Tip revision: 47795c14474509d637066e7e4f9c5c81902e3c23 authored by Pratyush Desai on 09 May 2022, 10:13:51 UTC
add strict asyncio_mode in pytest.ini
Tip revision: 47795c1
mypy.ini
[mypy]
namespace_packages = True
warn_unused_ignores = True

# 3rd party libraries without stubs (yet)

[mypy-attrs_strict.*]  # a bit sad, but...
ignore_missing_imports = True

[mypy-deprecated.*]
ignore_missing_imports = True

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

[mypy-dulwich.*]
ignore_missing_imports = True

[mypy-iso8601.*]
ignore_missing_imports = True

[mypy-pkg_resources.*]
ignore_missing_imports = True

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