Revision d788677c0ff49460eee0d1a3d2d1c185b10d9f86 authored by Nicolas Dandrimont on 12 November 2019, 18:08:47 UTC, committed by Nicolas Dandrimont on 12 November 2019, 18:08:47 UTC
This would raise when the iteration terminates even though the uris were
generated.
1 parent d4540ed
Raw File
mypy.ini
[mypy]
namespace_packages = True

# due to the conditional import logic on swh.journal, in some cases a specific
# type: ignore is neede, in other it isn't...
warn_unused_ignores = False

# support for sqlalchemy magic: see https://github.com/dropbox/sqlalchemy-stubs
plugins = sqlmypy


# 3rd party libraries without stubs (yet)

# only shipped indirectly via hypothesis
[mypy-django.*]
ignore_missing_imports = True

[mypy-pkg_resources.*]
ignore_missing_imports = True

[mypy-psycopg2.*]
ignore_missing_imports = True

[mypy-pytest.*]
ignore_missing_imports = True

# temporary work-around for landing typing support in spite of the current
# journal<->storage dependency loop
[mypy-swh.journal.*]
ignore_missing_imports = True

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