-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
38 lines (30 loc) · 824 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
[bumpversion]
current_version = 0.0.0
tag = True
commit = True
commit_args = --no-verify
[bumpversion:file:banxico_api/apps/__init__.py]
[bumpversion:file:banxico_api/apps/templates/rest_framework/api.html]
[bumpversion:file:banxico_api/docs/index.md]
[bumpversion:file:banxico_api/README.md]
[flake8]
ignore = E203, E266, E501, W503
max-line-length = 120
select = B,C,E,F,W,T4,B9
exclude = .tox,.git,*/migrations/*,*/static/*,docs,venv,.venv,node_modules
[tool:pytest]
addopts = --failed-first --new-first
DJANGO_SETTINGS_MODULE = settings.testing
norecursedirs = .tox .git */migrations/* */static/* docs banxico_api/venv */venv/* node_modules
[coverage:run]
source = banxico_api/apps/
omit =
*tests*
*commands*
*migrations*
*admin*
*wsgi*
*conftest*
[coverage:report]
show_missing = True
skip_covered = True