-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.cfg
More file actions
88 lines (72 loc) · 1.26 KB
/
setup.cfg
File metadata and controls
88 lines (72 loc) · 1.26 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[bumpversion]
current_version = 3.4.1
commit = True
tag = True
[metadata]
description-file = README.rst
license-file = LICENSE
[wheel]
universal = 1
[bumpversion:file:health_check/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bumpversion:file:setup.py]
search = version={current_version}
replace = {new_version}
[bumpversion:file:README.rst]
search = :Version: {current_version}
replace = :Version: {new_version}
[tool:pytest]
minversion = 3
addopts =
--cov-report term
--cov-report html
--cov-report xml
--cov=health_check
norecursedirs =
*node_modules*
*settings*
*urls*
.tox*
*docs*
[coverage:run]
source = .
branch = True
omit =
*settings*
*__init__.py
*urls*
.tox*
*tests*
*/migrations/*
*/features/*
*manage.py
*wsgi.py
*celery.py
*apps.py
run*
build.py
*/commands/*
[coverage:report]
show_missing = True
ignore_errors = True
fail_under = 90
exclude_lines =
pragma: no cover
pass
noqa
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
def __repr__
if cls\.debug
if settings\.DEBUG
[coverage:paths]
source = ./
[coverage:html]
directory = .test_report/coverage_html/
[coverage:xml]
output = .test_report/coverage.xml
[pep8]
max-line-length = 120