forked from learningequality/morango
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
41 lines (36 loc) · 836 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
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 160
max-complexity = 10
exclude = morango/*/migrations/*,
docs,
morango/sync/operations.py,
morango/sync/backends/postgres.py,
morango/sync/backends/sqlite.py,
tests/testapp/tests/test_crypto.py
# Ignore non-PEP8-compliant rules so that the Black formatter can be used
ignore = E203,W503
[isort]
atomic = true
multi_line_output = 5
line_length = 160
indent = ' '
combine_as_imports = true
skip = wsgi.py,docs,env,cli.py,test,.eggs,build
[coverage:run]
branch = true
source = morango
omit =
*/migrations/*
*/tests/*
*/test_*.py
[coverage:report]
ignore_errors = True
show_missing = True
precision = 2
exclude_lines =
raise NotImplementedError
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.: