-
Notifications
You must be signed in to change notification settings - Fork 580
/
setup.cfg
83 lines (66 loc) · 1.31 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
[bdist_wheel]
python-tag = py34.py35.py36
[tool:pytest]
minversion = 3.6.4
testpaths =
bears
.ci
tests
python_files = *Test.py
python_classes = *Test
addopts =
-r a
-p no:logging
--color=yes
--doctest-glob=*.rst
--doctest-modules
--doctest-ignore-import-error
--cov
--instafail
--profile
--reorder 'requirements.txt' 'test-requirements.txt' '*'
--ignore=tests/python/bandit_test_files/
doctest_optionflags =
ELLIPSIS
IGNORE_EXCEPTION_DETAIL
env =
PYTEST=1
python_paths = .ci/
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 =
bears
.ci
omit =
tests/*
setup.py
.ci/store_env_in_registry.py
.ci/*
[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
if .*: . backwards compatible no results
partial_branches =
pragma: no ?branch
pragma.* ${PLATFORM_SYSTEM}: no branch
pragma.* ${OS_NAME}: no branch
if True: . no else
[coverage:force_end_of_section]