-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
58 lines (45 loc) · 761 Bytes
/
setup.cfg
File metadata and controls
58 lines (45 loc) · 761 Bytes
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
[bdist_rpm]
release = 1
doc_files = README.md
no_autoreq = true
[flake8]
ignore = E501,E123
max-line-length=145
jobs=auto
# nose2 testing
[unittest]
start-dir = tests
test-file-pattern = test_*.py
plugins =
nose2.plugins.mp
nose2.plugins.junitxml
[multiprocess]
always-on = True
processes = 4
[coverage]
always-on = True
coverage = hammock
[log-capture]
always-on = True
log-level = 50
clear-handlers = True
[output-buffer]
always-on = True
stderr = True
[junit-xml]
always-on = True
path = build/unittest.xml
# Coverage
[coverage:run]
omit =
*__init__*
*.j2
tests
source = hammock
[coverage:report]
show_missing = True
fail_under = 84
[coverage:html]
directory = build/coverage-html
[coverage:xml]
output = build/coverage.xml