forked from django-cms/djangocms-alias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
59 lines (55 loc) · 1.05 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
[flake8]
ignore = E251,E128,E501,W503
max-line-length = 119
exclude =
*.egg-info,
.eggs,
.git,
.settings,
.tox,
.venv,
build,
data,
dist,
docs,
*migrations*,
requirements,
tmp,
*node_modules*,
venv
[isort]
line_length = 79
skip = manage.py, migrations, .tox, .eggs, data, .venv, venv
include_trailing_comma = true
multi_line_output = 3
lines_after_imports = 2
combine_as_imports = true
sections = FUTURE, STDLIB, DJANGO, CMS, THIRDPARTY, FIRSTPARTY, LOCALFOLDER
known_first_party = djangocms_alias
known_cms = cms, menus
known_django = django
extra_standard_library = mock
[coverage:run]
branch = True
parallel = True
source = djangocms_alias
omit =
*apps.py,
*constants.py,
*migrations/*,
*test_utils/*,
*tests/*,
[coverage:paths]
source =
djangocms_alias
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
show_missing = True