coverage 7.11.3__cp314-cp314-musllinux_1_2_x86_64.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.

Potentially problematic release.


This version of coverage might be problematic. Click here for more details.

Files changed (59) hide show
  1. coverage/__init__.py +40 -0
  2. coverage/__main__.py +12 -0
  3. coverage/annotate.py +114 -0
  4. coverage/bytecode.py +196 -0
  5. coverage/cmdline.py +1184 -0
  6. coverage/collector.py +486 -0
  7. coverage/config.py +731 -0
  8. coverage/context.py +74 -0
  9. coverage/control.py +1481 -0
  10. coverage/core.py +139 -0
  11. coverage/data.py +227 -0
  12. coverage/debug.py +669 -0
  13. coverage/disposition.py +59 -0
  14. coverage/env.py +135 -0
  15. coverage/exceptions.py +85 -0
  16. coverage/execfile.py +329 -0
  17. coverage/files.py +553 -0
  18. coverage/html.py +856 -0
  19. coverage/htmlfiles/coverage_html.js +733 -0
  20. coverage/htmlfiles/favicon_32.png +0 -0
  21. coverage/htmlfiles/index.html +164 -0
  22. coverage/htmlfiles/keybd_closed.png +0 -0
  23. coverage/htmlfiles/pyfile.html +149 -0
  24. coverage/htmlfiles/style.css +377 -0
  25. coverage/htmlfiles/style.scss +824 -0
  26. coverage/inorout.py +614 -0
  27. coverage/jsonreport.py +188 -0
  28. coverage/lcovreport.py +219 -0
  29. coverage/misc.py +373 -0
  30. coverage/multiproc.py +120 -0
  31. coverage/numbits.py +146 -0
  32. coverage/parser.py +1213 -0
  33. coverage/patch.py +166 -0
  34. coverage/phystokens.py +197 -0
  35. coverage/plugin.py +617 -0
  36. coverage/plugin_support.py +299 -0
  37. coverage/py.typed +1 -0
  38. coverage/python.py +269 -0
  39. coverage/pytracer.py +369 -0
  40. coverage/regions.py +127 -0
  41. coverage/report.py +298 -0
  42. coverage/report_core.py +117 -0
  43. coverage/results.py +471 -0
  44. coverage/sqldata.py +1153 -0
  45. coverage/sqlitedb.py +239 -0
  46. coverage/sysmon.py +482 -0
  47. coverage/templite.py +306 -0
  48. coverage/tomlconfig.py +210 -0
  49. coverage/tracer.cpython-314-x86_64-linux-musl.so +0 -0
  50. coverage/tracer.pyi +43 -0
  51. coverage/types.py +206 -0
  52. coverage/version.py +35 -0
  53. coverage/xmlreport.py +264 -0
  54. coverage-7.11.3.dist-info/METADATA +221 -0
  55. coverage-7.11.3.dist-info/RECORD +59 -0
  56. coverage-7.11.3.dist-info/WHEEL +5 -0
  57. coverage-7.11.3.dist-info/entry_points.txt +4 -0
  58. coverage-7.11.3.dist-info/licenses/LICENSE.txt +177 -0
  59. coverage-7.11.3.dist-info/top_level.txt +1 -0
Binary file
@@ -0,0 +1,164 @@
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
+ &nbsp; change column sorting
46
+ </p>
47
+ <p>
48
+ <kbd>[</kbd>
49
+ <kbd>]</kbd>
50
+ &nbsp; prev/next file
51
+ </p>
52
+ <p>
53
+ <kbd>?</kbd> &nbsp; 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
+ <tr class="tablehead" title="Click to sort">
85
+ <th id="file" class="name left" aria-sort="none" data-shortcut="f">File<span class="arrows"></span></th>
86
+ {% if region_noun %}
87
+ <th id="region" class="name left" aria-sort="none" data-default-sort-order="ascending" data-shortcut="n">{{ region_noun }}<span class="arrows"></span></th>
88
+ {% endif %}
89
+ <th id="statements" aria-sort="none" data-default-sort-order="descending" data-shortcut="s">statements<span class="arrows"></span></th>
90
+ <th id="missing" aria-sort="none" data-default-sort-order="descending" data-shortcut="m">missing<span class="arrows"></span></th>
91
+ <th id="excluded" aria-sort="none" data-default-sort-order="descending" data-shortcut="x">excluded<span class="arrows"></span></th>
92
+ {% if has_arcs %}
93
+ <th id="branches" aria-sort="none" data-default-sort-order="descending" data-shortcut="b">branches<span class="arrows"></span></th>
94
+ <th id="partial" aria-sort="none" data-default-sort-order="descending" data-shortcut="p">partial<span class="arrows"></span></th>
95
+ {% endif %}
96
+ <th id="coverage" class="right" aria-sort="none" data-shortcut="c">coverage<span class="arrows"></span></th>
97
+ </tr>
98
+ </thead>
99
+ <tbody>
100
+ {% for region in regions %}
101
+ <tr class="region">
102
+ <td class="name left"><a href="{{region.url}}">{{region.file}}</a></td>
103
+ {% if region_noun %}
104
+ <td class="name left"><a href="{{region.url}}">{{region.description}}</a></td>
105
+ {% endif %}
106
+ <td>{{region.nums.n_statements}}</td>
107
+ <td>{{region.nums.n_missing}}</td>
108
+ <td>{{region.nums.n_excluded}}</td>
109
+ {% if has_arcs %}
110
+ <td>{{region.nums.n_branches}}</td>
111
+ <td>{{region.nums.n_partial_branches}}</td>
112
+ {% endif %}
113
+ <td class="right" data-ratio="{{region.nums.ratio_covered|pair}}">{{region.nums.pc_covered_str}}%</td>
114
+ </tr>
115
+ {% endfor %}
116
+ </tbody>
117
+ <tfoot>
118
+ <tr class="total">
119
+ <td class="name left">Total</td>
120
+ {% if region_noun %}
121
+ <td class="name left">&nbsp;</td>
122
+ {% endif %}
123
+ <td>{{totals.n_statements}}</td>
124
+ <td>{{totals.n_missing}}</td>
125
+ <td>{{totals.n_excluded}}</td>
126
+ {% if has_arcs %}
127
+ <td>{{totals.n_branches}}</td>
128
+ <td>{{totals.n_partial_branches}}</td>
129
+ {% endif %}
130
+ <td class="right" data-ratio="{{totals.ratio_covered|pair}}">{{totals.pc_covered_str}}%</td>
131
+ </tr>
132
+ </tfoot>
133
+ </table>
134
+
135
+ <p id="no_rows">
136
+ No items found using the specified filter.
137
+ </p>
138
+
139
+ {% if skipped_covered_msg %}
140
+ <p>{{ skipped_covered_msg }}</p>
141
+ {% endif %}
142
+ {% if skipped_empty_msg %}
143
+ <p>{{ skipped_empty_msg }}</p>
144
+ {% endif %}
145
+ </main>
146
+
147
+ <footer>
148
+ <div class="content">
149
+ <p>
150
+ <a class="nav" href="{{__url__}}">coverage.py v{{__version__}}</a>,
151
+ created at {{ time_stamp }}
152
+ </p>
153
+ </div>
154
+ <aside class="hidden">
155
+ <a id="prevFileLink" class="nav" href="{{ final_html }}"></a>
156
+ <a id="nextFileLink" class="nav" href="{{ first_html }}"></a>
157
+ <button type="button" class="button_prev_file" data-shortcut="["></button>
158
+ <button type="button" class="button_next_file" data-shortcut="]"></button>
159
+ <button type="button" class="button_show_hide_help" data-shortcut="?"></button>
160
+ </aside>
161
+ </footer>
162
+
163
+ </body>
164
+ </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}}</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
+ &nbsp; toggle line displays
48
+ </p>
49
+ <p>
50
+ <kbd>j</kbd>
51
+ <kbd>k</kbd>
52
+ &nbsp; next/prev highlighted chunk
53
+ </p>
54
+ <p>
55
+ <kbd>0</kbd> &nbsp; (zero) top of page
56
+ </p>
57
+ <p>
58
+ <kbd>1</kbd> &nbsp; (one) first highlighted chunk
59
+ </p>
60
+ <p>
61
+ <kbd>[</kbd>
62
+ <kbd>]</kbd>
63
+ &nbsp; prev/next file
64
+ </p>
65
+ <p>
66
+ <kbd>u</kbd> &nbsp; up to the index
67
+ </p>
68
+ <p>
69
+ <kbd>?</kbd> &nbsp; show/hide this help
70
+ </p>
71
+ </div>
72
+ </div>
73
+ </aside>
74
+
75
+ <h2>
76
+ <span class="text">{{nums.n_statements}} statements &nbsp;</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 }}">&#xab; prev</a> &nbsp; &nbsp;
87
+ <a id="indexLink" class="nav" href="index.html">&Hat; index</a> &nbsp; &nbsp;
88
+ <a id="nextFileLink" class="nav" href="{{ next_html }}">&#xbb; next</a>
89
+ &nbsp; &nbsp; &nbsp;
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}}&nbsp;</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 }}">&#xab; prev</a> &nbsp; &nbsp;
139
+ <a class="nav" href="index.html">&Hat; index</a> &nbsp; &nbsp;
140
+ <a class="nav" href="{{ next_html }}">&#xbb; next</a>
141
+ &nbsp; &nbsp; &nbsp;
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>