OpenSlides/setup.cfg

40 lines
786 B
INI
Raw Normal View History

[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
lines_after_imports = 2
combine_as_imports = true
2019-01-06 16:15:56 +01:00
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_first_party = openslides
2019-08-20 12:00:54 +02:00
known_third_party = pytest,onelogin
2017-08-23 20:51:06 +02:00
[mypy]
ignore_missing_imports = true
strict_optional = true
2017-08-24 12:26:55 +02:00
check_untyped_defs = true
2017-08-23 20:51:06 +02:00
2017-08-24 12:26:55 +02:00
[mypy-openslides.utils.*]
2018-02-24 16:38:17 +01:00
disallow_untyped_defs = true
2017-08-22 14:17:20 +02:00
[mypy-openslides.core.config]
2018-02-24 16:38:17 +01:00
disallow_untyped_defs = true
[tool:pytest]
DJANGO_SETTINGS_MODULE = tests.settings
testpaths = tests/
2018-09-23 17:01:58 +02:00
filterwarnings =
ignore:RemovedInDjango30Warning