coverage 7.10.6__cp314-cp314-macosx_11_0_arm64.whl → 7.11.0__cp314-cp314-macosx_11_0_arm64.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.
- coverage/cmdline.py +4 -2
- coverage/collector.py +2 -2
- coverage/config.py +11 -11
- coverage/control.py +6 -5
- coverage/debug.py +9 -8
- coverage/env.py +1 -64
- coverage/exceptions.py +6 -8
- coverage/html.py +12 -4
- coverage/jsonreport.py +14 -5
- coverage/lcovreport.py +5 -2
- coverage/misc.py +26 -25
- coverage/parser.py +63 -206
- coverage/patch.py +11 -10
- coverage/phystokens.py +3 -6
- coverage/python.py +1 -1
- coverage/results.py +99 -40
- coverage/sqldata.py +6 -2
- coverage/tracer.cpython-314-darwin.so +0 -0
- coverage/types.py +8 -12
- coverage/version.py +2 -16
- {coverage-7.10.6.dist-info → coverage-7.11.0.dist-info}/METADATA +13 -13
- {coverage-7.10.6.dist-info → coverage-7.11.0.dist-info}/RECORD +26 -26
- {coverage-7.10.6.dist-info → coverage-7.11.0.dist-info}/WHEEL +0 -0
- {coverage-7.10.6.dist-info → coverage-7.11.0.dist-info}/entry_points.txt +0 -0
- {coverage-7.10.6.dist-info → coverage-7.11.0.dist-info}/licenses/LICENSE.txt +0 -0
- {coverage-7.10.6.dist-info → coverage-7.11.0.dist-info}/top_level.txt +0 -0
coverage/version.py
CHANGED
|
@@ -8,7 +8,7 @@ from __future__ import annotations
|
|
|
8
8
|
|
|
9
9
|
# version_info: same semantics as sys.version_info.
|
|
10
10
|
# _dev: the .devN suffix if any.
|
|
11
|
-
version_info = (7,
|
|
11
|
+
version_info = (7, 11, 0, "final", 0)
|
|
12
12
|
_dev = 0
|
|
13
13
|
|
|
14
14
|
|
|
@@ -31,19 +31,5 @@ def _make_version(
|
|
|
31
31
|
return version
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
def _make_url(
|
|
35
|
-
major: int,
|
|
36
|
-
minor: int,
|
|
37
|
-
micro: int,
|
|
38
|
-
releaselevel: str,
|
|
39
|
-
serial: int = 0,
|
|
40
|
-
dev: int = 0,
|
|
41
|
-
) -> str:
|
|
42
|
-
"""Make the URL people should start at for this version of coverage.py."""
|
|
43
|
-
return "https://coverage.readthedocs.io/en/" + _make_version(
|
|
44
|
-
major, minor, micro, releaselevel, serial, dev
|
|
45
|
-
)
|
|
46
|
-
|
|
47
|
-
|
|
48
34
|
__version__ = _make_version(*version_info, _dev)
|
|
49
|
-
__url__ =
|
|
35
|
+
__url__ = f"https://coverage.readthedocs.io/en/{__version__}"
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: coverage
|
|
3
|
-
Version: 7.
|
|
3
|
+
Version: 7.11.0
|
|
4
4
|
Summary: Code coverage measurement for Python
|
|
5
5
|
Home-page: https://github.com/nedbat/coveragepy
|
|
6
6
|
Author: Ned Batchelder and 243 others
|
|
7
7
|
Author-email: ned@nedbatchelder.com
|
|
8
8
|
License: Apache-2.0
|
|
9
|
-
Project-URL: Documentation, https://coverage.readthedocs.io/en/7.
|
|
9
|
+
Project-URL: Documentation, https://coverage.readthedocs.io/en/7.11.0
|
|
10
10
|
Project-URL: Funding, https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=pypi
|
|
11
11
|
Project-URL: Issues, https://github.com/nedbat/coveragepy/issues
|
|
12
12
|
Project-URL: Mastodon, https://hachyderm.io/@coveragepy
|
|
@@ -17,18 +17,18 @@ Classifier: Intended Audience :: Developers
|
|
|
17
17
|
Classifier: Operating System :: OS Independent
|
|
18
18
|
Classifier: Programming Language :: Python
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.14
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.15
|
|
26
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
27
27
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
28
28
|
Classifier: Topic :: Software Development :: Quality Assurance
|
|
29
29
|
Classifier: Topic :: Software Development :: Testing
|
|
30
30
|
Classifier: Development Status :: 5 - Production/Stable
|
|
31
|
-
Requires-Python: >=3.
|
|
31
|
+
Requires-Python: >=3.10
|
|
32
32
|
Description-Content-Type: text/x-rst
|
|
33
33
|
License-File: LICENSE.txt
|
|
34
34
|
Provides-Extra: toml
|
|
@@ -75,13 +75,13 @@ Coverage.py runs on these versions of Python:
|
|
|
75
75
|
|
|
76
76
|
.. PYVERSIONS
|
|
77
77
|
|
|
78
|
-
* Python 3.
|
|
79
|
-
* PyPy3 versions 3.
|
|
78
|
+
* Python 3.10 through 3.15 alpha, including free-threading.
|
|
79
|
+
* PyPy3 versions 3.10 and 3.11.
|
|
80
80
|
|
|
81
81
|
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
|
|
82
82
|
`GitHub`_.
|
|
83
83
|
|
|
84
|
-
.. _Read the Docs: https://coverage.readthedocs.io/en/7.
|
|
84
|
+
.. _Read the Docs: https://coverage.readthedocs.io/en/7.11.0/
|
|
85
85
|
.. _GitHub: https://github.com/nedbat/coveragepy
|
|
86
86
|
|
|
87
87
|
**New in 7.x:**
|
|
@@ -93,7 +93,7 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
|
|
|
93
93
|
multi-line exclusion patterns;
|
|
94
94
|
function/class reporting;
|
|
95
95
|
experimental support for sys.monitoring;
|
|
96
|
-
dropped support for Python
|
|
96
|
+
dropped support for Python up to 3.9;
|
|
97
97
|
added ``Coverage.collect()`` context manager;
|
|
98
98
|
improved data combining;
|
|
99
99
|
``[run] exclude_also`` setting;
|
|
@@ -131,7 +131,7 @@ Getting Started
|
|
|
131
131
|
Looking to run ``coverage`` on your test suite? See the `Quick Start section`_
|
|
132
132
|
of the docs.
|
|
133
133
|
|
|
134
|
-
.. _Quick Start section: https://coverage.readthedocs.io/en/7.
|
|
134
|
+
.. _Quick Start section: https://coverage.readthedocs.io/en/7.11.0/#quick-start
|
|
135
135
|
|
|
136
136
|
|
|
137
137
|
Change history
|
|
@@ -139,7 +139,7 @@ Change history
|
|
|
139
139
|
|
|
140
140
|
The complete history of changes is on the `change history page`_.
|
|
141
141
|
|
|
142
|
-
.. _change history page: https://coverage.readthedocs.io/en/7.
|
|
142
|
+
.. _change history page: https://coverage.readthedocs.io/en/7.11.0/changes.html
|
|
143
143
|
|
|
144
144
|
|
|
145
145
|
Code of Conduct
|
|
@@ -158,7 +158,7 @@ Contributing
|
|
|
158
158
|
Found a bug? Want to help improve the code or documentation? See the
|
|
159
159
|
`Contributing section`_ of the docs.
|
|
160
160
|
|
|
161
|
-
.. _Contributing section: https://coverage.readthedocs.io/en/7.
|
|
161
|
+
.. _Contributing section: https://coverage.readthedocs.io/en/7.11.0/contributing.html
|
|
162
162
|
|
|
163
163
|
|
|
164
164
|
Security
|
|
@@ -186,7 +186,7 @@ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_.
|
|
|
186
186
|
:target: https://github.com/nedbat/coveragepy/actions/workflows/quality.yml
|
|
187
187
|
:alt: Quality check status
|
|
188
188
|
.. |docs| image:: https://readthedocs.org/projects/coverage/badge/?version=latest&style=flat
|
|
189
|
-
:target: https://coverage.readthedocs.io/en/7.
|
|
189
|
+
:target: https://coverage.readthedocs.io/en/7.11.0/
|
|
190
190
|
:alt: Documentation
|
|
191
191
|
.. |kit| image:: https://img.shields.io/pypi/v/coverage
|
|
192
192
|
:target: https://pypi.org/project/coverage/
|
|
@@ -195,7 +195,7 @@ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_.
|
|
|
195
195
|
:target: https://pypi.org/project/coverage/
|
|
196
196
|
:alt: Python versions supported
|
|
197
197
|
.. |license| image:: https://img.shields.io/pypi/l/coverage.svg
|
|
198
|
-
:target: https://
|
|
198
|
+
:target: https://github.com/nedbat/coveragepy/blob/master/LICENSE.txt
|
|
199
199
|
:alt: License
|
|
200
200
|
.. |metacov| image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/nedbat/8c6980f77988a327348f9b02bbaf67f5/raw/metacov.json
|
|
201
201
|
:target: https://nedbat.github.io/coverage-reports/latest.html
|
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
coverage-7.
|
|
2
|
-
coverage-7.
|
|
3
|
-
coverage-7.
|
|
4
|
-
coverage-7.
|
|
5
|
-
coverage-7.
|
|
6
|
-
coverage-7.
|
|
7
|
-
coverage/patch.py,sha256=
|
|
8
|
-
coverage/misc.py,sha256=
|
|
1
|
+
coverage-7.11.0.dist-info/RECORD,,
|
|
2
|
+
coverage-7.11.0.dist-info/WHEEL,sha256=2Id6qreet5t4wZv58bZfijJ58qrc2xkw6OVvWfeqxV0,136
|
|
3
|
+
coverage-7.11.0.dist-info/entry_points.txt,sha256=9yTQ78MxN2yPai5yGQH_9pCCIAbx54RIC_6FWHzS3jg,123
|
|
4
|
+
coverage-7.11.0.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
|
|
5
|
+
coverage-7.11.0.dist-info/METADATA,sha256=2qEkuQfH-VWe-QDZTTGhR3iqciR6T85ca8co4ruUXXo,8958
|
|
6
|
+
coverage-7.11.0.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
|
7
|
+
coverage/patch.py,sha256=iSLYLGdbHet3AI31lvJmBTCiD4iaRyhjBkgE0asR29A,5565
|
|
8
|
+
coverage/misc.py,sha256=xd3XVZSfd-z3Nh3Py5YTK_O-2i2Td3au_IMfM-T8E4o,11289
|
|
9
9
|
coverage/files.py,sha256=Rrlwqx5BM7LBEvs6DeNQgY9k4MpB1-UlqooP9Uj38m4,19355
|
|
10
|
-
coverage/phystokens.py,sha256=
|
|
11
|
-
coverage/lcovreport.py,sha256=
|
|
12
|
-
coverage/config.py,sha256=
|
|
13
|
-
coverage/version.py,sha256=
|
|
14
|
-
coverage/env.py,sha256=
|
|
10
|
+
coverage/phystokens.py,sha256=wt0CqznD6Wr_hw8zcccys9lyaBe1qqg0IxP9JgIRr8c,7448
|
|
11
|
+
coverage/lcovreport.py,sha256=RpGXEZlKpFj5HolgT38WL3BUU6RZdlrIFJRfLP3_Kv8,7872
|
|
12
|
+
coverage/config.py,sha256=Fy2HdEE0hsAzv1tE7vxSUSIPMu2N0qiiZcv9ZdIpDc0,25316
|
|
13
|
+
coverage/version.py,sha256=wSZgTi5KP9Ldn7nBjnO5ZPCxE_rOlA4bHpOGcugEOx0,1092
|
|
14
|
+
coverage/env.py,sha256=CTLYf21TWzySmR2fHmytHWVXLU-35nOFUSiRNCTVkqk,4970
|
|
15
15
|
coverage/sysmon.py,sha256=I-VF8bCB0QJV59Qps-qxzn5jEh7p9N7FU_5QZ0m21nc,17504
|
|
16
16
|
coverage/templite.py,sha256=aOe06VntfmJ8PaOxdqWw3wdrS90cPFWz5bYE--xe8Dc,10810
|
|
17
|
-
coverage/results.py,sha256=
|
|
17
|
+
coverage/results.py,sha256=VxFJ-MpLAxBJ_-MjqNWOmOd0sZHPJ6KHFgKXRlrdcyw,16101
|
|
18
18
|
coverage/plugin_support.py,sha256=fOUgXtpAtwAZ4Og0PaIoigpbm1JEEzTccMR929w9g7I,10442
|
|
19
19
|
coverage/numbits.py,sha256=-X58XJSBQqBf8BuUdH9tP0B3Igsr3zxOnuwZNHhPqbI,4671
|
|
20
20
|
coverage/regions.py,sha256=Ht3vkoZg_tGpkldpOLzA7OSpA-HhfcFUYOq56BXGCBY,4498
|
|
21
|
-
coverage/control.py,sha256=
|
|
21
|
+
coverage/control.py,sha256=UQbt38hPH-Lla3xthuc9sHcCtIW_4qNIxtGJSF028kw,54609
|
|
22
22
|
coverage/sqlitedb.py,sha256=MBoLg2OSWZTXEd1_bEyn7AqFvI-vaCGBWDfIupm_v7E,10010
|
|
23
|
-
coverage/html.py,sha256=
|
|
24
|
-
coverage/cmdline.py,sha256=
|
|
25
|
-
coverage/collector.py,sha256=
|
|
23
|
+
coverage/html.py,sha256=fPPNqyBLv7DqTGFIP2jQpRxCOVZDaYW83FeidWHS_30,31382
|
|
24
|
+
coverage/cmdline.py,sha256=LvxMo_fjtaSi_T_YDSWrDdo7BkEJA-cOdxotBPV1NRw,36574
|
|
25
|
+
coverage/collector.py,sha256=nssghop_0v_inj3a4iYjabYc_YrzqQMbhfdRiDivOnE,19297
|
|
26
26
|
coverage/__init__.py,sha256=1HV1dqISjELlkoq8Ds_mk6aT5fEtHbFaKy_ptdR8PYA,1063
|
|
27
27
|
coverage/core.py,sha256=gg1nMVtyJVcWnoYWxTmt2P_BPEwoVJ4Rf07oQw77L7Q,4359
|
|
28
28
|
coverage/pytracer.py,sha256=PO0rDiMGO1_phAobtVOxwngSSwGxCbZ6WlwfAH4nld4,15316
|
|
29
|
-
coverage/types.py,sha256=
|
|
29
|
+
coverage/types.py,sha256=I6SjctiHjOK1pXpSLaXynp5Us0anXHm7uuax_kUq-L4,5598
|
|
30
30
|
coverage/annotate.py,sha256=S16UE-Dv1NFfINYPThpwGFR5uqKMqKjDrRkhvy5XVuY,3749
|
|
31
|
-
coverage/sqldata.py,sha256=
|
|
32
|
-
coverage/tracer.cpython-314-darwin.so,sha256=
|
|
31
|
+
coverage/sqldata.py,sha256=hwxVKg4VJXdul2dxiQOhDVNM641UQsrZDMRFp9Jsxvo,45526
|
|
32
|
+
coverage/tracer.cpython-314-darwin.so,sha256=yd1FhcfCnozv_cYSK0wmorUA_mmiFQqqoFhY9i_DWkM,56560
|
|
33
33
|
coverage/disposition.py,sha256=z3SK69CMnDy6QOUfqBK5ZXisekNEYLz-vrkLmxaJ9uE,1895
|
|
34
|
-
coverage/parser.py,sha256=
|
|
34
|
+
coverage/parser.py,sha256=R_ueSgO9ncyP_dEkXng7AqeVRb0nENT4WOWWHzqAb_0,46226
|
|
35
35
|
coverage/context.py,sha256=3CmyB2hBXuH0AGFxMTAeNKemuEViQ3llqBW35YU8fn0,2432
|
|
36
36
|
coverage/xmlreport.py,sha256=QlfMsYrFY6hu2knDByTiQtKlJlYfjKsVgI7C9uLK9qA,9869
|
|
37
|
-
coverage/debug.py,sha256=
|
|
38
|
-
coverage/python.py,sha256=
|
|
37
|
+
coverage/debug.py,sha256=vFrSItCbej4ysgHQkVV_wYUS59Tq47M9zqapGNM7CWA,21570
|
|
38
|
+
coverage/python.py,sha256=YDp3LZW242KeuprqlK92HHbHU0B5iARndD5jbGrchHc,8584
|
|
39
39
|
coverage/tracer.pyi,sha256=AMCDNOd1bRAAJP6mGh-BUimiz76C57lcrNqK7sxFkVU,1205
|
|
40
40
|
coverage/plugin.py,sha256=5PmGBtlpw7AUxFltglXGky43zWQPAxwCkU1JxD9_zkA,21507
|
|
41
41
|
coverage/py.typed,sha256=_B1ZXy5hKJZ2Zo3jWSXjqy1SO3rnLdZsUULnKGTplfc,72
|
|
42
|
-
coverage/exceptions.py,sha256=
|
|
42
|
+
coverage/exceptions.py,sha256=qHNw6v9C_nQVGqu2mBotk2X9M02c_lRAFrw8eOwmH2E,1428
|
|
43
43
|
coverage/inorout.py,sha256=DbCfAL4lnNsr0UNRW63pmLKQsC2MevbV90ulUo5cUNo,24343
|
|
44
|
-
coverage/jsonreport.py,sha256=
|
|
44
|
+
coverage/jsonreport.py,sha256=08v8x0EdR9MeMmbM39QIxRD_toiynp3ZvYmVOtK1Fcc,7067
|
|
45
45
|
coverage/report_core.py,sha256=xUPd0ghiRbDg8qMJmGMpq8bApCplSw7-LvGmBDC2FsI,4052
|
|
46
46
|
coverage/bytecode.py,sha256=NX5uGxBXq32zmBqgVzbufcrwH4cA-vKiKcjLn9pGqS8,6319
|
|
47
47
|
coverage/tomlconfig.py,sha256=rqHOI_4Y5hAgakcbYsainF3OswDBDRaBV3KbXyFasBA,7556
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|