0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-25 11:17:50 +01:00
posthog/mypy.ini
Tim Glaser 7da9287656
595 offload storing events to workers (#615)
* Adds to #595 move capture workload to tasks

* Move tests to tasks

* Move tests from api to tasks

* Finish moving tests around

* Closes #611 alias should find based on alias rather than distinct_id

* Make sure batch still works

* Add tests for slack
2020-04-17 15:38:17 +01:00

45 lines
841 B
INI

[mypy]
plugins =
mypy_django_plugin.main,
mypy_drf_plugin.main
strict_optional = True
no_implicit_optional = True
warn_unused_ignores = True
check_untyped_defs = True
warn_unreachable = True
strict_equality = True
[mypy-posthog.tasks.*]
disallow_untyped_defs = True
check_untyped_defs = True
[mypy.plugins.django-stubs]
django_settings_module = posthog.settings
[mypy-dj_database_url]
ignore_missing_imports = True
[mypy-social_django.models]
ignore_missing_imports = True
[mypy-celery.*]
ignore_missing_imports = True
[mypy-social_django.strategy]
ignore_missing_imports = True
[mypy-social_core.utils]
ignore_missing_imports = True
[mypy-posthoganalytics]
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-freezegun]
ignore_missing_imports = True