forked from learningequality/kolibri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (35 loc) · 810 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
[wheel]
universal = 1
[aliases]
test = pytest
[flake8]
max-line-length = 160
max-complexity = 10
exclude = kolibri/*/migrations/*,kolibri/dist/*,kolibripip.pex
# Ignore non-PEP8-compliant rules so that the Black formatter can be used
ignore = E203,W503,E741
[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,setup.py,kolibripip.pex
[coverage:run]
branch = true
source = kolibri
omit =
*/migrations/*
*/tests/*
*/test_*.py
kolibri/core/webpack/management/commands/devserver.py
kolibri/utils/lru_cache.py
[coverage:report]
ignore_errors = True
show_missing = True
precision = 2
exclude_lines =
raise NotImplementedError
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.: