forked from coala/coala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
78 lines (61 loc) · 1.25 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
[bdist_wheel]
python-tag = py34.py35.py36
[build_manpage]
output = coala.1
parser = coalib.parsing.DefaultArgParser:default_arg_parser
[tool:pytest]
minversion = 3.6.1
testpaths =
coalib
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
--error-for-skips
--cov
--instafail
--profile
--reorder 'requirements.txt' 'test-requirements.txt' '*'
--ignore=tests/collecting/collectors_test_dir/bears/incorrect_bear.py
doctest_optionflags =
ELLIPSIS
IGNORE_EXCEPTION_DETAIL
env =
PYTEST=1
reqsfilenamepatterns =
requirements.txt
test-requirements.txt
reqsignorevcs = True
timeout = 60
[coverage:coverage_env_plugin]
markers = True
[coverage:run]
branch = True
cover_pylib = False
plugins =
coverage_env_plugin
coverage_config_reload_plugin
source =
coalib
omit =
tests/*
setup.py
coalib/misc/Asyncio.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
sys.exit\(main\(\)\)
[coverage:force_end_of_section]