-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
49 lines (45 loc) · 908 Bytes
/
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
[flake8]
ignore =
E203,
E501,
W503,
max-line-length = 88
exclude =
.git,
__pycache__,
**/migrations/,
build/,
.tox/,
[tool:pytest]
addopts = -p no:cacheprovider -p no:stepwise
env =
D:DATABASE_URL=sqlite://localhost/:memory:
DJANGO_SETTINGS_MODULE = config.settings
python_files = test_*.py
testpaths = ../tests/
django_find_project = true
[isort]
line_length = 88
multi_line_output = 3
lines_after_imports = 2
include_trailing_comma = true
balanced_wrapping = true
skip = .tox
known_third_party = django
sections = FUTURE, STDLIB, THIRDPARTY, FIRSTPARTY, LIB, LOCALFOLDER
[coverage:run]
branch = True
source = teerace
omit =
*migrations/*,
*tests/*,
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.: