-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.cfg
96 lines (79 loc) · 2.52 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[flake8]
# flake8 configuration:
# https://flake8.pycqa.org/en/latest/user/configuration.html
format = wemake
show-source = True
statistics = False
doctests = True
enable-extensions = G
# darglint configuration:
# https://github.com/terrencepreilly/darglint
strictness = long
docstring-style = numpy
# Flake plugins:
max-line-length = 88
max-complexity = 6
exclude = .git,__pycache__,.venv,.eggs,*.egg
ignore = D100, D104, D106, D401, X100, W504, RST303, RST304, DAR103, DAR203, W503, WPS317, WPS348
per-file-ignores =
test_*/*/settings.py: S105, WPS226, WPS407, WPS412, WPS432
test_projects/*/migrations/*.py: WPS102, WPS114, WPS432
tests/*.py: S101, WPS432, WPS442
noxfile.py: WPS226, WPS442
[tool:pytest]
# pytest configuration:
# https://docs.pytest.org/en/stable/customize.html
DJANGO_SETTINGS_MODULE = django_test_app.settings
# Directories that are not visited by pytest collector:
norecursedirs = dtu_test_project *.egg .eggs dist build docs .tox .git __pycache__
# You will need to measure your tests speed with `-n auto` and without it,
# so you can see whether it gives you any performance gain, or just gives
# you an overhead. See `docs/template/development-process.rst`.
addopts =
--strict-markers
--strict-config
--doctest-modules
--tb=short
--cov=tenant_users
--cov=tests
--cov-branch
--cov-report=term-missing:skip-covered
--cov-report=html
--cov-report=xml
markers =
no_db_setup: Mark a test to skip the default database setup.
[mypy]
# Mypy configuration:
# https://mypy.readthedocs.io/en/latest/config_file.html
allow_redefinition = False
check_untyped_defs = True
disallow_untyped_decorators = True
disallow_any_explicit = True
disallow_any_generics = True
disallow_untyped_calls = True
ignore_errors = False
ignore_missing_imports = True
implicit_reexport = False
local_partial_types = True
strict_optional = True
strict_equality = True
no_implicit_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unreachable = True
warn_no_return = True
plugins =
mypy_django_plugin.main
[mypy.plugins.django-stubs]
django_settings_module = test_projects.django_tenants.settings
[mypy-tenant_users.*.migrations.*]
# Django migrations should not produce any errors:
ignore_errors = True
[mypy-tenant_users.*.models]
# FIXME: remove this line, when `django-stubs` will stop
# using `Any` inside.
disallow_any_explicit = False