-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
40 lines (33 loc) · 787 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
[tool:pytest]
python_files=test_*.py
testpaths = tests
addopts=-s -p no:doctest --flake8 --cov=./
norecursedirs=pyprometheus build bin dist docs .git
flake8-max-line-length = 100
flake8-ignore =
*.py E501
main/settings/*.py F403 F401
*/migrations/* ALL
[flake8]
ignore = E501,F403,F401,D100,D101,D102,D103,I004,I001,I003,Q000,D205,D400,D105
max-line-length = 100
exclude = .tox,.git,docs,.ropeproject
inline-quotes = double
[bdist_wheel]
universal = 1
[coverage:run]
omit =
conftest.py
*test_*.py
*tests_*.py
fabfile.py
setup.py
.eggs/*
.tox/*
[coverage:report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
[metadata]
description-file = README.rst