https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 3f424238e3c147aa04c99ac3b776f057332808c1 authored by Nicolas Dandrimont on 03 June 2020, 09:29:58 UTC
Add future dependency, missing from celery 4.4.4
Tip revision: 3f42423
mypy.ini
[mypy]
namespace_packages = True
warn_unused_ignores = True


# 3rd party libraries without stubs (yet)

[mypy-arrow.*]
ignore_missing_imports = True

[mypy-celery.*]
ignore_missing_imports = True

[mypy-elasticsearch.*]
ignore_missing_imports = True

[mypy-kombu.*]
ignore_missing_imports = True

[mypy-pika.*]
ignore_missing_imports = True

[mypy-pkg_resources.*]
ignore_missing_imports = True

[mypy-psycopg2.*]
ignore_missing_imports = True

[mypy-pytest.*]
ignore_missing_imports = True

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