OpenSlides/setup.cfg
Oskar Hahn d7db714562 CollectionElement and Autoupdate cleanups
* change get_restricted_data and get_projector_data to always use a list
* Add typings to all get_restricted_data and get_projector_data methods
* Replace CollectionElementList with a real list
* Fixed arguments of inform_deleted_data
* Moved CollectionElementCache to cache.py and refactored it
* Run tests with cache enabled (using fakeredis)
2017-09-15 12:11:32 +02:00

30 lines
517 B
INI

[coverage:run]
source = openslides
omit =
openslides/core/management/commands/*.py
openslides/users/management/commands/*.py
[coverage:html]
directory = personal_data/tmp/htmlcov
[flake8]
max_line_length = 150
[isort]
include_trailing_comma = true
multi_line_output = 3
[mypy]
ignore_missing_imports = true
strict_optional = true
check_untyped_defs = true
[mypy-openslides.utils.*]
disallow_any = unannotated
[mypy-openslides.core.config]
disallow_any = unannotated
[mypy-tests.*]
ignore_errors = true