forked from TACC/agavepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (38 loc) · 917 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
[bdist_wheel]
universal = 1
[aliases]
test = pytest
[pbr]
autodoc_tree_index_modules = False
autodoc_tree_excludes =
setup.py
[pylint]
disable = W0614,C0103,C0111
ignore = migrations
ignore-docstrings = yes
output-format = colorized
[flake8]
include = agavepy
exclude = build,dist,docs/conf.py,*.egg-info,tests
ignore = E402,E501,F401,F403,E402,E302,E305,811
max-line-length = 140
max-complexity = 10
verbose = 0
jobs = 2
statistics = True
[yapf]
based_on_style = pep8
spaces_before_comment = 4
split_before_logical_operator = true
[tool:pytest]
python_files = test_*.py
norecursedirs = env _build tmp* offline .git *.egg-info
testpaths = tests/
; addopts = -p no:warnings
addopts = -p no:warnings --cov=agavepy --cov-report term
log_cli = True
log_cli_level = DEBUG
flakes-ignore =
*.py UnusedImport ImportStarUsed
[coverage:run]
omit = agavepy/tests/*,agavepy/attic/*,agavepy/swaggerpy/*,*.json,*.j2