-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (42 loc) · 1003 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
50
51
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[flake8]
max-line-length = 120
exclude =
.github
.tox
.git
*/migrations/*
*/static/CACHE/*
docs
node_modules
cadd_rest_api/__init__.py
cadd_rest_api/_version
versioneer.py
# TODO: remove C901 again
ignore = E203, E266, E501, W503, C901
max-complexity = 18
select = B,C,E,F,W,T4,B9
[tool:pytest]
addopts = --cov=cubi_tk --cov=tests --cov-report=xml
testpaths = tests
[coverage:run]
omit =
cadd_rest_api/_version.py
versioneer.py
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = cadd_rest_api/_version.py
versionfile_build = cadd_rest_api/_version.py
tag_prefix = v
parentdir_prefix = cadd_rest_api
[mypy]
ignore_missing_imports = true
[pydocstyle]
ignore = D100,D101,D102,D105,D103,D104,D105,D107,D202,D203,D204,D213