-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.cfg
More file actions
43 lines (39 loc) · 902 Bytes
/
setup.cfg
File metadata and controls
43 lines (39 loc) · 902 Bytes
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
[tool:pytest]
addopts = -x -s
log_cli = 1
log_cli_level = INFO
DJANGO_SETTINGS_MODULE = veems.settings
filterwarnings =
ignore::DeprecationWarning
[flake8]
exclude = .git,__pycache__,legacy,build,dist,.tox,.terraform,**/migrations/*.py,stub_data.py,**/node_modules/,src/web-compile/,src/
max-complexity = 15
application-import-names=veems,tests
ignore = T484,T499,D100,D101,D102,D103,D104,D105,D107,W504,W503,E231
[isort]
line_length=79
multi_line_output=5
length_sort=false
known_first_party=veems,tests
default_section=THIRDPARTY
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[tool:brunette]
line-length = 79
verbose = true
single-quotes = true
exclude = .*/node_modules/.*
[coverage:run]
omit =
tests/*
src/*
setup.py
**/wsgi.py
**/apps.py
manage.py
.tox/*
dist/*
**/settings.py
**/migrations/*
**/__init__.py
app.py
**/urls.py