coverage 7.13.1__cp313-cp313-musllinux_1_2_riscv64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- a1_coverage.pth +1 -0
- coverage/__init__.py +38 -0
- coverage/__main__.py +12 -0
- coverage/annotate.py +113 -0
- coverage/bytecode.py +197 -0
- coverage/cmdline.py +1220 -0
- coverage/collector.py +487 -0
- coverage/config.py +732 -0
- coverage/context.py +74 -0
- coverage/control.py +1514 -0
- coverage/core.py +139 -0
- coverage/data.py +251 -0
- coverage/debug.py +669 -0
- coverage/disposition.py +59 -0
- coverage/env.py +135 -0
- coverage/exceptions.py +85 -0
- coverage/execfile.py +329 -0
- coverage/files.py +553 -0
- coverage/html.py +860 -0
- coverage/htmlfiles/coverage_html.js +735 -0
- coverage/htmlfiles/favicon_32.png +0 -0
- coverage/htmlfiles/index.html +199 -0
- coverage/htmlfiles/keybd_closed.png +0 -0
- coverage/htmlfiles/pyfile.html +149 -0
- coverage/htmlfiles/style.css +389 -0
- coverage/htmlfiles/style.scss +844 -0
- coverage/inorout.py +590 -0
- coverage/jsonreport.py +200 -0
- coverage/lcovreport.py +218 -0
- coverage/misc.py +381 -0
- coverage/multiproc.py +120 -0
- coverage/numbits.py +146 -0
- coverage/parser.py +1215 -0
- coverage/patch.py +118 -0
- coverage/phystokens.py +197 -0
- coverage/plugin.py +617 -0
- coverage/plugin_support.py +299 -0
- coverage/pth_file.py +16 -0
- coverage/py.typed +1 -0
- coverage/python.py +272 -0
- coverage/pytracer.py +370 -0
- coverage/regions.py +127 -0
- coverage/report.py +298 -0
- coverage/report_core.py +117 -0
- coverage/results.py +502 -0
- coverage/sqldata.py +1212 -0
- coverage/sqlitedb.py +226 -0
- coverage/sysmon.py +509 -0
- coverage/templite.py +319 -0
- coverage/tomlconfig.py +212 -0
- coverage/tracer.cpython-313-riscv64-linux-musl.so +0 -0
- coverage/tracer.pyi +43 -0
- coverage/types.py +214 -0
- coverage/version.py +35 -0
- coverage/xmlreport.py +263 -0
- coverage-7.13.1.dist-info/METADATA +200 -0
- coverage-7.13.1.dist-info/RECORD +61 -0
- coverage-7.13.1.dist-info/WHEEL +5 -0
- coverage-7.13.1.dist-info/entry_points.txt +4 -0
- coverage-7.13.1.dist-info/licenses/LICENSE.txt +177 -0
- coverage-7.13.1.dist-info/top_level.txt +1 -0
|
Binary file
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
{# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 #}
|
|
2
|
+
{# For details: https://github.com/coveragepy/coveragepy/blob/main/NOTICE.txt #}
|
|
3
|
+
|
|
4
|
+
<!DOCTYPE html>
|
|
5
|
+
<html lang="en">
|
|
6
|
+
<head>
|
|
7
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
8
|
+
<title>{{ title|escape }}</title>
|
|
9
|
+
<link rel="icon" sizes="32x32" href="{{ statics.favicon_32_png }}">
|
|
10
|
+
<link rel="stylesheet" href="{{ statics.style_css }}" type="text/css">
|
|
11
|
+
{% if extra_css %}
|
|
12
|
+
<link rel="stylesheet" href="{{ statics.extra_css }}" type="text/css">
|
|
13
|
+
{% endif %}
|
|
14
|
+
<script src="{{ statics.coverage_html_js }}" defer></script>
|
|
15
|
+
</head>
|
|
16
|
+
<body class="indexfile">
|
|
17
|
+
|
|
18
|
+
<header>
|
|
19
|
+
<div class="content">
|
|
20
|
+
<h1>{{ title|escape }}:
|
|
21
|
+
<span class="pc_cov">{{totals.pc_covered_str}}%</span>
|
|
22
|
+
</h1>
|
|
23
|
+
|
|
24
|
+
<aside id="help_panel_wrapper">
|
|
25
|
+
<input id="help_panel_state" type="checkbox">
|
|
26
|
+
<label for="help_panel_state">
|
|
27
|
+
<img id="keyboard_icon" src="{{ statics.keybd_closed_png }}" alt="Show/hide keyboard shortcuts">
|
|
28
|
+
</label>
|
|
29
|
+
<div id="help_panel">
|
|
30
|
+
<p class="legend">Shortcuts on this page</p>
|
|
31
|
+
<div class="keyhelp">
|
|
32
|
+
<p>
|
|
33
|
+
<kbd>f</kbd>
|
|
34
|
+
{% if region_noun %}
|
|
35
|
+
<kbd>n</kbd>
|
|
36
|
+
{% endif %}
|
|
37
|
+
<kbd>s</kbd>
|
|
38
|
+
<kbd>m</kbd>
|
|
39
|
+
<kbd>x</kbd>
|
|
40
|
+
{% if has_arcs %}
|
|
41
|
+
<kbd>b</kbd>
|
|
42
|
+
<kbd>p</kbd>
|
|
43
|
+
{% endif %}
|
|
44
|
+
<kbd>c</kbd>
|
|
45
|
+
change column sorting
|
|
46
|
+
</p>
|
|
47
|
+
<p>
|
|
48
|
+
<kbd>[</kbd>
|
|
49
|
+
<kbd>]</kbd>
|
|
50
|
+
prev/next file
|
|
51
|
+
</p>
|
|
52
|
+
<p>
|
|
53
|
+
<kbd>?</kbd> show/hide this help
|
|
54
|
+
</p>
|
|
55
|
+
</div>
|
|
56
|
+
</div>
|
|
57
|
+
</aside>
|
|
58
|
+
|
|
59
|
+
<form id="filter_container">
|
|
60
|
+
<input id="filter" type="text" value="" placeholder="filter...">
|
|
61
|
+
<div>
|
|
62
|
+
<input id="hide100" type="checkbox" {% if skip_covered %}checked disabled {% endif %}>
|
|
63
|
+
<label for="hide100">hide covered</label>
|
|
64
|
+
</div>
|
|
65
|
+
</form>
|
|
66
|
+
|
|
67
|
+
<h2>
|
|
68
|
+
{% for ibtn in index_buttons %}
|
|
69
|
+
<a class="button{% if ibtn.current %} current{% endif %}"{% if ibtn.url %} href="{{ ibtn.url }}"{% endif %}>{{ ibtn.label }}</a>{#-#}
|
|
70
|
+
{% endfor %}
|
|
71
|
+
</h2>
|
|
72
|
+
|
|
73
|
+
<p class="text">
|
|
74
|
+
<a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a>,
|
|
75
|
+
created at {{ time_stamp }}
|
|
76
|
+
</p>
|
|
77
|
+
</div>
|
|
78
|
+
</header>
|
|
79
|
+
|
|
80
|
+
<main id="index">
|
|
81
|
+
<table class="index" data-sortable>
|
|
82
|
+
<thead>
|
|
83
|
+
{# The title="" attr doesn't work in Safari. #}
|
|
84
|
+
{% if has_arcs %}
|
|
85
|
+
<tr class="tablehead grouphead">
|
|
86
|
+
<th class="spacer"> </th>
|
|
87
|
+
{% if region_noun %}
|
|
88
|
+
<th class="spacer"> </th>
|
|
89
|
+
{% endif %}
|
|
90
|
+
<th class="spacer"> </th>
|
|
91
|
+
<th class="left" colspan="{% if has_arcs %}4{% else %}3{% endif %}">Statements</th>
|
|
92
|
+
<th class="spacer"> </th>
|
|
93
|
+
<th class="left" colspan="3">Branches</th>
|
|
94
|
+
<th class="spacer"> </th>
|
|
95
|
+
<th>Total</th>
|
|
96
|
+
</tr>
|
|
97
|
+
{% endif %}
|
|
98
|
+
<tr class="tablehead" title="Click to sort">
|
|
99
|
+
<th id="file" class="name" aria-sort="none" data-shortcut="f">File<span class="arrows"></span></th>
|
|
100
|
+
{% if region_noun %}
|
|
101
|
+
<th id="region" class="name" aria-sort="none" data-default-sort-order="ascending" data-shortcut="n">{{ region_noun }}<span class="arrows"></span></th>
|
|
102
|
+
{% endif %}
|
|
103
|
+
<th class="spacer"> </th>
|
|
104
|
+
{% if has_arcs %}
|
|
105
|
+
<th id="statements_coverage" aria-sort="none" data-default-sort-order="descending">coverage<span class="arrows"></span></th>
|
|
106
|
+
{% endif %}
|
|
107
|
+
<th id="statements" aria-sort="none" data-default-sort-order="descending" data-shortcut="s">statements<span class="arrows"></span></th>
|
|
108
|
+
<th id="missing" aria-sort="none" data-default-sort-order="descending" data-shortcut="m">missing<span class="arrows"></span></th>
|
|
109
|
+
<th id="excluded" aria-sort="none" data-default-sort-order="descending" data-shortcut="x">excluded<span class="arrows"></span></th>
|
|
110
|
+
{% if has_arcs %}
|
|
111
|
+
<th class="spacer"> </th>
|
|
112
|
+
<th id="branches_coverage" aria-sort="none" data-default-sort-order="descending">coverage<span class="arrows"></span></th>
|
|
113
|
+
<th id="branches" aria-sort="none" data-default-sort-order="descending" data-shortcut="b">branches<span class="arrows"></span></th>
|
|
114
|
+
<th id="partial" aria-sort="none" data-default-sort-order="descending" data-shortcut="p">partial<span class="arrows"></span></th>
|
|
115
|
+
{% endif %}
|
|
116
|
+
<th class="spacer"> </th>
|
|
117
|
+
<th id="coverage" aria-sort="none" data-shortcut="c">coverage<span class="arrows"></span></th>
|
|
118
|
+
</tr>
|
|
119
|
+
</thead>
|
|
120
|
+
<tbody>
|
|
121
|
+
{% for region in regions %}
|
|
122
|
+
<tr class="region">
|
|
123
|
+
<td class="name"><a href="{{region.url}}">{{region.file|escape|pretty_file}}</a></td>
|
|
124
|
+
{% if region_noun %}
|
|
125
|
+
<td class="name"><a href="{{region.url}}">{{region.description}}</a></td>
|
|
126
|
+
{% endif %}
|
|
127
|
+
<td class="spacer"> </td>
|
|
128
|
+
{% if has_arcs %}
|
|
129
|
+
<td data-ratio="{{region.nums.ratio_statements|pair}}">{{region.nums.pc_statements_str}}%</td>
|
|
130
|
+
{% endif %}
|
|
131
|
+
<td>{{region.nums.n_statements}}</td>
|
|
132
|
+
<td>{{region.nums.n_missing}}</td>
|
|
133
|
+
<td>{{region.nums.n_excluded}}</td>
|
|
134
|
+
{% if has_arcs %}
|
|
135
|
+
<td class="spacer"> </td>
|
|
136
|
+
<td data-ratio="{{region.nums.ratio_branches|pair}}">{{region.nums.pc_branches_str}}%</td>
|
|
137
|
+
<td>{{region.nums.n_branches}}</td>
|
|
138
|
+
<td>{{region.nums.n_partial_branches}}</td>
|
|
139
|
+
{% endif %}
|
|
140
|
+
<td class="spacer"> </td>
|
|
141
|
+
<td data-ratio="{{region.nums.ratio_covered|pair}}">{{region.nums.pc_covered_str}}%</td>
|
|
142
|
+
</tr>
|
|
143
|
+
{% endfor %}
|
|
144
|
+
</tbody>
|
|
145
|
+
<tfoot>
|
|
146
|
+
<tr class="total">
|
|
147
|
+
<td class="name">Total</td>
|
|
148
|
+
{% if region_noun %}
|
|
149
|
+
<td class="name"> </td>
|
|
150
|
+
{% endif %}
|
|
151
|
+
<td class="spacer"> </td>
|
|
152
|
+
{% if has_arcs %}
|
|
153
|
+
<td data-ratio="{{totals.ratio_statements|pair}}">{{totals.pc_statements_str}}%</td>
|
|
154
|
+
{% endif %}
|
|
155
|
+
<td>{{totals.n_statements}}</td>
|
|
156
|
+
<td>{{totals.n_missing}}</td>
|
|
157
|
+
<td>{{totals.n_excluded}}</td>
|
|
158
|
+
{% if has_arcs %}
|
|
159
|
+
<td class="spacer"> </td>
|
|
160
|
+
<td data-ratio="{{totals.ratio_branches|pair}}">{{totals.pc_branches_str}}%</td>
|
|
161
|
+
<td>{{totals.n_branches}}</td>
|
|
162
|
+
<td>{{totals.n_partial_branches}}</td>
|
|
163
|
+
{% endif %}
|
|
164
|
+
<td class="spacer"> </td>
|
|
165
|
+
<td data-ratio="{{totals.ratio_covered|pair}}">{{totals.pc_covered_str}}%</td>
|
|
166
|
+
</tr>
|
|
167
|
+
</tfoot>
|
|
168
|
+
</table>
|
|
169
|
+
|
|
170
|
+
<p id="no_rows">
|
|
171
|
+
No items found using the specified filter.
|
|
172
|
+
</p>
|
|
173
|
+
|
|
174
|
+
{% if skipped_covered_msg %}
|
|
175
|
+
<p>{{ skipped_covered_msg }}</p>
|
|
176
|
+
{% endif %}
|
|
177
|
+
{% if skipped_empty_msg %}
|
|
178
|
+
<p>{{ skipped_empty_msg }}</p>
|
|
179
|
+
{% endif %}
|
|
180
|
+
</main>
|
|
181
|
+
|
|
182
|
+
<footer>
|
|
183
|
+
<div class="content">
|
|
184
|
+
<p>
|
|
185
|
+
<a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a>,
|
|
186
|
+
created at {{ time_stamp }}
|
|
187
|
+
</p>
|
|
188
|
+
</div>
|
|
189
|
+
<aside class="hidden">
|
|
190
|
+
<a id="prevFileLink" class="nav" href="{{ final_html }}"></a>
|
|
191
|
+
<a id="nextFileLink" class="nav" href="{{ first_html }}"></a>
|
|
192
|
+
<button type="button" class="button_prev_file" data-shortcut="["></button>
|
|
193
|
+
<button type="button" class="button_next_file" data-shortcut="]"></button>
|
|
194
|
+
<button type="button" class="button_show_hide_help" data-shortcut="?"></button>
|
|
195
|
+
</aside>
|
|
196
|
+
</footer>
|
|
197
|
+
|
|
198
|
+
</body>
|
|
199
|
+
</html>
|
|
Binary file
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
{# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0 #}
|
|
2
|
+
{# For details: https://github.com/coveragepy/coveragepy/blob/main/NOTICE.txt #}
|
|
3
|
+
|
|
4
|
+
<!DOCTYPE html>
|
|
5
|
+
<html lang="en">
|
|
6
|
+
<head>
|
|
7
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
8
|
+
<title>Coverage for {{relative_filename|escape}}: {{nums.pc_covered_str}}%</title>
|
|
9
|
+
<link rel="icon" sizes="32x32" href="{{ statics.favicon_32_png }}">
|
|
10
|
+
<link rel="stylesheet" href="{{ statics.style_css }}" type="text/css">
|
|
11
|
+
{% if extra_css %}
|
|
12
|
+
<link rel="stylesheet" href="{{ statics.extra_css }}" type="text/css">
|
|
13
|
+
{% endif %}
|
|
14
|
+
|
|
15
|
+
{% if contexts_json %}
|
|
16
|
+
<script type="text/javascript">
|
|
17
|
+
contexts = {{ contexts_json }}
|
|
18
|
+
</script>
|
|
19
|
+
{% endif %}
|
|
20
|
+
|
|
21
|
+
<script src="{{ statics.coverage_html_js }}" defer></script>
|
|
22
|
+
</head>
|
|
23
|
+
<body class="pyfile">
|
|
24
|
+
|
|
25
|
+
<header>
|
|
26
|
+
<div class="content">
|
|
27
|
+
<h1>
|
|
28
|
+
<span class="text">Coverage for </span><b>{{relative_filename|escape|pretty_file}}</b>:
|
|
29
|
+
<span class="pc_cov">{{nums.pc_covered_str}}%</span>
|
|
30
|
+
</h1>
|
|
31
|
+
|
|
32
|
+
<aside id="help_panel_wrapper">
|
|
33
|
+
<input id="help_panel_state" type="checkbox">
|
|
34
|
+
<label for="help_panel_state">
|
|
35
|
+
<img id="keyboard_icon" src="{{ statics.keybd_closed_png }}" alt="Show/hide keyboard shortcuts">
|
|
36
|
+
</label>
|
|
37
|
+
<div id="help_panel">
|
|
38
|
+
<p class="legend">Shortcuts on this page</p>
|
|
39
|
+
<div class="keyhelp">
|
|
40
|
+
<p>
|
|
41
|
+
<kbd>r</kbd>
|
|
42
|
+
<kbd>m</kbd>
|
|
43
|
+
<kbd>x</kbd>
|
|
44
|
+
{% if has_arcs %}
|
|
45
|
+
<kbd>p</kbd>
|
|
46
|
+
{% endif %}
|
|
47
|
+
toggle line displays
|
|
48
|
+
</p>
|
|
49
|
+
<p>
|
|
50
|
+
<kbd>j</kbd>
|
|
51
|
+
<kbd>k</kbd>
|
|
52
|
+
next/prev highlighted chunk
|
|
53
|
+
</p>
|
|
54
|
+
<p>
|
|
55
|
+
<kbd>0</kbd> (zero) top of page
|
|
56
|
+
</p>
|
|
57
|
+
<p>
|
|
58
|
+
<kbd>1</kbd> (one) first highlighted chunk
|
|
59
|
+
</p>
|
|
60
|
+
<p>
|
|
61
|
+
<kbd>[</kbd>
|
|
62
|
+
<kbd>]</kbd>
|
|
63
|
+
prev/next file
|
|
64
|
+
</p>
|
|
65
|
+
<p>
|
|
66
|
+
<kbd>u</kbd> up to the index
|
|
67
|
+
</p>
|
|
68
|
+
<p>
|
|
69
|
+
<kbd>?</kbd> show/hide this help
|
|
70
|
+
</p>
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
</aside>
|
|
74
|
+
|
|
75
|
+
<h2>
|
|
76
|
+
<span class="text">{{nums.n_statements}} statements </span>
|
|
77
|
+
<button type="button" class="{{category.run}} button_toggle_run" value="run" data-shortcut="r" title="Toggle lines run">{{nums.n_executed}}<span class="text"> run</span></button>
|
|
78
|
+
<button type="button" class="{{category.mis}} button_toggle_mis" value="mis" data-shortcut="m" title="Toggle lines missing">{{nums.n_missing}}<span class="text"> missing</span></button>
|
|
79
|
+
<button type="button" class="{{category.exc}} button_toggle_exc" value="exc" data-shortcut="x" title="Toggle lines excluded">{{nums.n_excluded}}<span class="text"> excluded</span></button>
|
|
80
|
+
{% if has_arcs %}
|
|
81
|
+
<button type="button" class="{{category.par}} button_toggle_par" value="par" data-shortcut="p" title="Toggle lines partially run">{{nums.n_partial_branches}}<span class="text"> partial</span></button>
|
|
82
|
+
{% endif %}
|
|
83
|
+
</h2>
|
|
84
|
+
|
|
85
|
+
<p class="text">
|
|
86
|
+
<a id="prevFileLink" class="nav" href="{{ prev_html }}">« prev</a>
|
|
87
|
+
<a id="indexLink" class="nav" href="index.html">^ index</a>
|
|
88
|
+
<a id="nextFileLink" class="nav" href="{{ next_html }}">» next</a>
|
|
89
|
+
|
|
90
|
+
<a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a>,
|
|
91
|
+
created at {{ time_stamp }}
|
|
92
|
+
</p>
|
|
93
|
+
|
|
94
|
+
<aside class="hidden">
|
|
95
|
+
<button type="button" class="button_next_chunk" data-shortcut="j"></button>
|
|
96
|
+
<button type="button" class="button_prev_chunk" data-shortcut="k"></button>
|
|
97
|
+
<button type="button" class="button_top_of_page" data-shortcut="0"></button>
|
|
98
|
+
<button type="button" class="button_first_chunk" data-shortcut="1"></button>
|
|
99
|
+
<button type="button" class="button_prev_file" data-shortcut="["></button>
|
|
100
|
+
<button type="button" class="button_next_file" data-shortcut="]"></button>
|
|
101
|
+
<button type="button" class="button_to_index" data-shortcut="u"></button>
|
|
102
|
+
<button type="button" class="button_show_hide_help" data-shortcut="?"></button>
|
|
103
|
+
</aside>
|
|
104
|
+
</div>
|
|
105
|
+
</header>
|
|
106
|
+
|
|
107
|
+
<main id="source">
|
|
108
|
+
{% for line in lines -%}
|
|
109
|
+
{% joined %}
|
|
110
|
+
<p class="{{line.css_class}}">
|
|
111
|
+
<span class="n"><a id="t{{line.number}}" href="#t{{line.number}}">{{line.number}}</a></span>
|
|
112
|
+
<span class="t">{{line.html}} </span>
|
|
113
|
+
{% if line.context_list %}
|
|
114
|
+
<input type="checkbox" id="ctxs{{line.number}}">
|
|
115
|
+
{% endif %}
|
|
116
|
+
{# Things that should float right in the line. #}
|
|
117
|
+
<span class="r">
|
|
118
|
+
{% if line.annotate %}
|
|
119
|
+
<span class="annotate short">{{line.annotate}}</span>
|
|
120
|
+
<span class="annotate long">{{line.annotate_long}}</span>
|
|
121
|
+
{% endif %}
|
|
122
|
+
{% if line.contexts %}
|
|
123
|
+
<label for="ctxs{{line.number}}" class="ctx">{{ line.contexts_label }}</label>
|
|
124
|
+
{% endif %}
|
|
125
|
+
</span>
|
|
126
|
+
{# Things that should appear below the line. #}
|
|
127
|
+
{% if line.context_str %}
|
|
128
|
+
<span class="ctxs">{{ line.context_str }}</span>
|
|
129
|
+
{% endif %}
|
|
130
|
+
</p>
|
|
131
|
+
{% endjoined %}
|
|
132
|
+
{% endfor %}
|
|
133
|
+
</main>
|
|
134
|
+
|
|
135
|
+
<footer>
|
|
136
|
+
<div class="content">
|
|
137
|
+
<p>
|
|
138
|
+
<a class="nav" href="{{ prev_html }}">« prev</a>
|
|
139
|
+
<a class="nav" href="index.html">^ index</a>
|
|
140
|
+
<a class="nav" href="{{ next_html }}">» next</a>
|
|
141
|
+
|
|
142
|
+
<a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a>,
|
|
143
|
+
created at {{ time_stamp }}
|
|
144
|
+
</p>
|
|
145
|
+
</div>
|
|
146
|
+
</footer>
|
|
147
|
+
|
|
148
|
+
</body>
|
|
149
|
+
</html>
|