lin
2025-08-14 dae8bad597b6607a449b32bf76c523423f7720ed
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
 
[unittest]
plugins = 
    unittest2.plugins.debugger
    unittest2.plugins.checker
    unittest2.plugins.doctestloader
    unittest2.plugins.matchregexp
    unittest2.plugins.moduleloading
    unittest2.plugins.testcoverage
    unittest2.plugins.growl
    unittest2.plugins.filtertests
    unittest2.plugins.junitxml
    unittest2.plugins.timed
    unittest2.plugins.counttests
    unittest2.plugins.logchannels
 
excluded-plugins =
 
# 0, 1 or 2 (default is 1)
# quiet, normal or verbose
# can be overriden at command line
verbosity = normal
 
# true or false
# even if false can be switched on at command line
catch =
buffer =
failfast =
 
 
[matchregexp]
always-on = False
full-path = True
 
[debugger]
always-on = False
errors-only = True
 
[coverage]
always-on = False
config =
report-html = False
# only used if report-html is false
annotate = False
# defaults to './htmlcov/'
html-directory =
# if unset will output to console
text-file =
branch = False
timid = False
cover-pylib = False
exclude-lines = 
    # Have to re-enable the standard pragma
    pragma: no cover
 
    # Don't complain about missing debug-only code:
    def __repr__
    if self\.debug
 
    # Don't complain if tests don't hit defensive assertion code:
    raise AssertionError
    raise NotImplementedError
 
    # Don't complain if non-runnable code isn't run:
    if 0:
    if __name__ == .__main__.
    
ignore-errors = False
modules =
 
[growl]
always-on = False
 
[doctest]
always-on = False
 
[module-loading]
always-on = False
 
[checker]
always-on = False
pep8 = False
pyflakes = True
 
[junit-xml]
always-on = False
path = junit.xml
 
[timed]
always-on = True
threshold = 0.01
 
[count]
always-on = True
enhanced = False