-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.cfg
115 lines (98 loc) · 1.82 KB
/
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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[bdist_wheel]
python-tag = py34.py35.py36
[tool:pytest]
minversion = 3.6.4
DJANGO_SETTINGS_MODULE = community.settings
testpaths =
community
activity
inactive_issues
data
gci
gsoc
gamification
log
meta_review
model
unassigned_issues
python_files = test_*.py
python_classes = *Test
addopts =
-r a
-p no:logging
--color=yes
--doctest-glob=*.rst
--doctest-modules
--doctest-ignore-import-errors
--error-for-skips
--cov
--instafail
--profile
--reorder 'requirements.txt' 'test-requirements.txt' '*'
doctest_optionflags =
ELLIPSIS
IGNORE_EXCEPTION_DETAIL
env =
PYTEST=1
reqsfilenamepatterns =
requirements.txt
test-requirements.txt
reqsignorevcs = True
timeout = 35
[coverage:coverage_env_plugin]
markers = True
[coverage:run]
branch = True
cover_pylib = False
plugins =
coverage_env_plugin
coverage_config_reload_plugin
source =
community
activity
inactive_issues
data
gci
gsoc
gamification
log
meta_review
model
unassigned_issues
omit =
tests/*
activity/*.py
community/git.py
gci/*.py
gsoc/*.py
log/*.py
meta_review/handler.py
model/*.py
openhub/*.py
inactive_issues/inactive_issues_scraper.py
unassigned_issues/unassigned_issues_scraper.py
*/migrations/*.py
*/management/commands/*.py
meta_review/load_from_db.py
meta_review/dump_to_db.py
community/urls.py
*/views.py
*/tests/*.py
[coverage:report]
fail_under = 100
show_missing = True
skip_covered = False
sort = Miss
exclude_lines =
pragma: no ?cover
pragma ${PLATFORM_SYSTEM}: no cover
pragma ${OS_NAME}: no cover
pragma Python [0-9.,]*${PYTHON_VERSION}[0-9.,]*: no cover
def get_api_key
def clear_score
def __str__
partial_branches =
pragma: no ?branch
pragma.* ${PLATFORM_SYSTEM}: no branch
pragma.* ${OS_NAME}: no branch
[coverage:force_end_of_section]