updates
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,221 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: coverage
|
||||
Version: 7.12.0
|
||||
Summary: Code coverage measurement for Python
|
||||
Home-page: https://github.com/coveragepy/coveragepy
|
||||
Author: Ned Batchelder and 245 others
|
||||
Author-email: ned@nedbatchelder.com
|
||||
License: Apache-2.0
|
||||
Project-URL: Documentation, https://coverage.readthedocs.io/en/7.12.0
|
||||
Project-URL: Funding, https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=pypi
|
||||
Project-URL: Issues, https://github.com/coveragepy/coveragepy/issues
|
||||
Project-URL: Mastodon, https://hachyderm.io/@coveragepy
|
||||
Project-URL: Mastodon (nedbat), https://hachyderm.io/@nedbat
|
||||
Keywords: code coverage testing
|
||||
Classifier: Environment :: Console
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Classifier: Programming Language :: Python :: 3.13
|
||||
Classifier: Programming Language :: Python :: 3.14
|
||||
Classifier: Programming Language :: Python :: 3.15
|
||||
Classifier: Programming Language :: Python :: Free Threading :: 3 - Stable
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Classifier: Topic :: Software Development :: Quality Assurance
|
||||
Classifier: Topic :: Software Development :: Testing
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Requires-Python: >=3.10
|
||||
Description-Content-Type: text/x-rst
|
||||
License-File: LICENSE.txt
|
||||
Provides-Extra: toml
|
||||
Requires-Dist: tomli; python_full_version <= "3.11.0a6" and extra == "toml"
|
||||
Dynamic: author
|
||||
Dynamic: author-email
|
||||
Dynamic: classifier
|
||||
Dynamic: description
|
||||
Dynamic: description-content-type
|
||||
Dynamic: home-page
|
||||
Dynamic: keywords
|
||||
Dynamic: license
|
||||
Dynamic: license-file
|
||||
Dynamic: project-url
|
||||
Dynamic: provides-extra
|
||||
Dynamic: requires-python
|
||||
Dynamic: summary
|
||||
|
||||
.. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
|
||||
.. For details: https://github.com/coveragepy/coveragepy/blob/main/NOTICE.txt
|
||||
|
||||
===========
|
||||
Coverage.py
|
||||
===========
|
||||
|
||||
Code coverage measurement for Python.
|
||||
|
||||
.. image:: https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg
|
||||
:target: https://vshymanskyy.github.io/StandWithUkraine
|
||||
:alt: Stand with Ukraine
|
||||
|
||||
-------------
|
||||
|
||||
| |kit| |license| |versions|
|
||||
| |test-status| |quality-status| |docs| |metacov|
|
||||
| |tidelift| |sponsor| |stars| |mastodon-coveragepy| |mastodon-nedbat|
|
||||
|bluesky-nedbat|
|
||||
|
||||
Coverage.py measures code coverage, typically during test execution. It uses
|
||||
the code analysis tools and tracing hooks provided in the Python standard
|
||||
library to determine which lines are executable, and which have been executed.
|
||||
|
||||
Coverage.py runs on these versions of Python:
|
||||
|
||||
.. PYVERSIONS
|
||||
|
||||
* Python 3.10 through 3.15 alpha, including free-threading.
|
||||
* PyPy3 versions 3.10 and 3.11.
|
||||
|
||||
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
|
||||
`GitHub`_.
|
||||
|
||||
.. _Read the Docs: https://coverage.readthedocs.io/en/7.12.0/
|
||||
.. _GitHub: https://github.com/coveragepy/coveragepy
|
||||
|
||||
**New in 7.x:**
|
||||
``[run] patch`` setting;
|
||||
``--save-signal`` option;
|
||||
``[run] core`` setting;
|
||||
``[run] source_dirs`` setting;
|
||||
``Coverage.branch_stats()``;
|
||||
multi-line exclusion patterns;
|
||||
function/class reporting;
|
||||
experimental support for sys.monitoring;
|
||||
dropped support for Python up to 3.9;
|
||||
added ``Coverage.collect()`` context manager;
|
||||
improved data combining;
|
||||
``[run] exclude_also`` setting;
|
||||
``report --format=``;
|
||||
type annotations.
|
||||
|
||||
**New in 6.x:**
|
||||
dropped support for Python 2.7, 3.5, and 3.6;
|
||||
write data on SIGTERM;
|
||||
added support for 3.10 match/case statements.
|
||||
|
||||
|
||||
For Enterprise
|
||||
--------------
|
||||
|
||||
.. |tideliftlogo| image:: https://nedbatchelder.com/pix/Tidelift_Logo_small.png
|
||||
:alt: Tidelift
|
||||
:target: https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=readme
|
||||
|
||||
.. list-table::
|
||||
:widths: 10 100
|
||||
|
||||
* - |tideliftlogo|
|
||||
- `Available as part of the Tidelift Subscription. <https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=readme>`_
|
||||
Coverage and thousands of other packages are working with
|
||||
Tidelift to deliver one enterprise subscription that covers all of the open
|
||||
source you use. If you want the flexibility of open source and the confidence
|
||||
of commercial-grade software, this is for you.
|
||||
`Learn more. <https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=readme>`_
|
||||
|
||||
|
||||
Getting Started
|
||||
---------------
|
||||
|
||||
Looking to run ``coverage`` on your test suite? See the `Quick Start section`_
|
||||
of the docs.
|
||||
|
||||
.. _Quick Start section: https://coverage.readthedocs.io/en/7.12.0/#quick-start
|
||||
|
||||
|
||||
Change history
|
||||
--------------
|
||||
|
||||
The complete history of changes is on the `change history page`_.
|
||||
|
||||
.. _change history page: https://coverage.readthedocs.io/en/7.12.0/changes.html
|
||||
|
||||
|
||||
Code of Conduct
|
||||
---------------
|
||||
|
||||
Everyone participating in the coverage.py project is expected to treat other
|
||||
people with respect and to follow the guidelines articulated in the `Python
|
||||
Community Code of Conduct`_.
|
||||
|
||||
.. _Python Community Code of Conduct: https://www.python.org/psf/codeofconduct/
|
||||
|
||||
|
||||
Contributing
|
||||
------------
|
||||
|
||||
Found a bug? Want to help improve the code or documentation? See the
|
||||
`Contributing section`_ of the docs.
|
||||
|
||||
.. _Contributing section: https://coverage.readthedocs.io/en/7.12.0/contributing.html
|
||||
|
||||
|
||||
Security
|
||||
--------
|
||||
|
||||
To report a security vulnerability, please use the `Tidelift security
|
||||
contact`_. Tidelift will coordinate the fix and disclosure.
|
||||
|
||||
.. _Tidelift security contact: https://tidelift.com/security
|
||||
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_.
|
||||
|
||||
.. _Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0
|
||||
.. _NOTICE.txt: https://github.com/coveragepy/coveragepy/blob/main/NOTICE.txt
|
||||
|
||||
|
||||
.. |test-status| image:: https://github.com/coveragepy/coveragepy/actions/workflows/testsuite.yml/badge.svg?branch=main&event=push
|
||||
:target: https://github.com/coveragepy/coveragepy/actions/workflows/testsuite.yml
|
||||
:alt: Test suite status
|
||||
.. |quality-status| image:: https://github.com/coveragepy/coveragepy/actions/workflows/quality.yml/badge.svg?branch=main&event=push
|
||||
:target: https://github.com/coveragepy/coveragepy/actions/workflows/quality.yml
|
||||
:alt: Quality check status
|
||||
.. |docs| image:: https://readthedocs.org/projects/coverage/badge/?version=latest&style=flat
|
||||
:target: https://coverage.readthedocs.io/en/7.12.0/
|
||||
:alt: Documentation
|
||||
.. |kit| image:: https://img.shields.io/pypi/v/coverage
|
||||
:target: https://pypi.org/project/coverage/
|
||||
:alt: PyPI status
|
||||
.. |versions| image:: https://img.shields.io/pypi/pyversions/coverage.svg?logo=python&logoColor=FBE072
|
||||
:target: https://pypi.org/project/coverage/
|
||||
:alt: Python versions supported
|
||||
.. |license| image:: https://img.shields.io/pypi/l/coverage.svg
|
||||
:target: https://github.com/coveragepy/coveragepy/blob/main/LICENSE.txt
|
||||
:alt: License
|
||||
.. |metacov| image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/nedbat/8c6980f77988a327348f9b02bbaf67f5/raw/metacov.json
|
||||
:target: https://coveragepy.github.io/metacov-reports/latest.html
|
||||
:alt: Coverage reports
|
||||
.. |tidelift| image:: https://tidelift.com/badges/package/pypi/coverage
|
||||
:target: https://tidelift.com/subscription/pkg/pypi-coverage?utm_source=pypi-coverage&utm_medium=referral&utm_campaign=readme
|
||||
:alt: Tidelift
|
||||
.. |stars| image:: https://img.shields.io/github/stars/coveragepy/coveragepy.svg?logo=github&style=flat
|
||||
:target: https://github.com/coveragepy/coveragepy/stargazers
|
||||
:alt: GitHub stars
|
||||
.. |mastodon-nedbat| image:: https://img.shields.io/badge/dynamic/json?style=flat&labelColor=450657&logo=mastodon&logoColor=ffffff&label=@nedbat&query=followers_count&url=https%3A%2F%2Fhachyderm.io%2Fapi%2Fv1%2Faccounts%2Flookup%3Facct=nedbat
|
||||
:target: https://hachyderm.io/@nedbat
|
||||
:alt: nedbat on Mastodon
|
||||
.. |mastodon-coveragepy| image:: https://img.shields.io/badge/dynamic/json?style=flat&labelColor=450657&logo=mastodon&logoColor=ffffff&label=@coveragepy&query=followers_count&url=https%3A%2F%2Fhachyderm.io%2Fapi%2Fv1%2Faccounts%2Flookup%3Facct=coveragepy
|
||||
:target: https://hachyderm.io/@coveragepy
|
||||
:alt: coveragepy on Mastodon
|
||||
.. |bluesky-nedbat| image:: https://img.shields.io/badge/dynamic/json?style=flat&color=96a3b0&labelColor=3686f7&logo=icloud&logoColor=white&label=@nedbat&url=https%3A%2F%2Fpublic.api.bsky.app%2Fxrpc%2Fapp.bsky.actor.getProfile%3Factor=nedbat.com&query=followersCount
|
||||
:target: https://bsky.app/profile/nedbat.com
|
||||
:alt: nedbat on Bluesky
|
||||
.. |sponsor| image:: https://img.shields.io/badge/%E2%9D%A4-Sponsor%20me-brightgreen?style=flat&logo=GitHub
|
||||
:target: https://github.com/sponsors/nedbat
|
||||
:alt: Sponsor me on GitHub
|
||||
@@ -0,0 +1,106 @@
|
||||
../../../bin/coverage,sha256=-a_nmUwoLehtytdxHAGo0yFcyFc5cF3jJ6fLex4VOy8,227
|
||||
../../../bin/coverage-3.12,sha256=-a_nmUwoLehtytdxHAGo0yFcyFc5cF3jJ6fLex4VOy8,227
|
||||
../../../bin/coverage3,sha256=-a_nmUwoLehtytdxHAGo0yFcyFc5cF3jJ6fLex4VOy8,227
|
||||
coverage-7.12.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
coverage-7.12.0.dist-info/METADATA,sha256=PGD12wCXYeynkpPbVge35bwwiNBgbO6zkLCeeAozPuE,9074
|
||||
coverage-7.12.0.dist-info/RECORD,,
|
||||
coverage-7.12.0.dist-info/WHEEL,sha256=mX4U4odf6w47aVjwZUmTYd1MF9BbrhVLKlaWSvZwHEk,186
|
||||
coverage-7.12.0.dist-info/entry_points.txt,sha256=s7x_4Bg6sI_AjEov0yLrWDOVR__vCWpFoIGw-MZk2qA,123
|
||||
coverage-7.12.0.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
||||
coverage-7.12.0.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
|
||||
coverage/__init__.py,sha256=deRlSPNGXQa-6Mr9q3FpSXvS51dc-xpHxdLS58TDE3k,1065
|
||||
coverage/__main__.py,sha256=rAq5mnzJvTfjnZxufsY-YoKZkHM81vdhkUsAmOU4wt8,297
|
||||
coverage/__pycache__/__init__.cpython-312.pyc,,
|
||||
coverage/__pycache__/__main__.cpython-312.pyc,,
|
||||
coverage/__pycache__/annotate.cpython-312.pyc,,
|
||||
coverage/__pycache__/bytecode.cpython-312.pyc,,
|
||||
coverage/__pycache__/cmdline.cpython-312.pyc,,
|
||||
coverage/__pycache__/collector.cpython-312.pyc,,
|
||||
coverage/__pycache__/config.cpython-312.pyc,,
|
||||
coverage/__pycache__/context.cpython-312.pyc,,
|
||||
coverage/__pycache__/control.cpython-312.pyc,,
|
||||
coverage/__pycache__/core.cpython-312.pyc,,
|
||||
coverage/__pycache__/data.cpython-312.pyc,,
|
||||
coverage/__pycache__/debug.cpython-312.pyc,,
|
||||
coverage/__pycache__/disposition.cpython-312.pyc,,
|
||||
coverage/__pycache__/env.cpython-312.pyc,,
|
||||
coverage/__pycache__/exceptions.cpython-312.pyc,,
|
||||
coverage/__pycache__/execfile.cpython-312.pyc,,
|
||||
coverage/__pycache__/files.cpython-312.pyc,,
|
||||
coverage/__pycache__/html.cpython-312.pyc,,
|
||||
coverage/__pycache__/inorout.cpython-312.pyc,,
|
||||
coverage/__pycache__/jsonreport.cpython-312.pyc,,
|
||||
coverage/__pycache__/lcovreport.cpython-312.pyc,,
|
||||
coverage/__pycache__/misc.cpython-312.pyc,,
|
||||
coverage/__pycache__/multiproc.cpython-312.pyc,,
|
||||
coverage/__pycache__/numbits.cpython-312.pyc,,
|
||||
coverage/__pycache__/parser.cpython-312.pyc,,
|
||||
coverage/__pycache__/patch.cpython-312.pyc,,
|
||||
coverage/__pycache__/phystokens.cpython-312.pyc,,
|
||||
coverage/__pycache__/plugin.cpython-312.pyc,,
|
||||
coverage/__pycache__/plugin_support.cpython-312.pyc,,
|
||||
coverage/__pycache__/python.cpython-312.pyc,,
|
||||
coverage/__pycache__/pytracer.cpython-312.pyc,,
|
||||
coverage/__pycache__/regions.cpython-312.pyc,,
|
||||
coverage/__pycache__/report.cpython-312.pyc,,
|
||||
coverage/__pycache__/report_core.cpython-312.pyc,,
|
||||
coverage/__pycache__/results.cpython-312.pyc,,
|
||||
coverage/__pycache__/sqldata.cpython-312.pyc,,
|
||||
coverage/__pycache__/sqlitedb.cpython-312.pyc,,
|
||||
coverage/__pycache__/sysmon.cpython-312.pyc,,
|
||||
coverage/__pycache__/templite.cpython-312.pyc,,
|
||||
coverage/__pycache__/tomlconfig.cpython-312.pyc,,
|
||||
coverage/__pycache__/types.cpython-312.pyc,,
|
||||
coverage/__pycache__/version.cpython-312.pyc,,
|
||||
coverage/__pycache__/xmlreport.cpython-312.pyc,,
|
||||
coverage/annotate.py,sha256=vI_P4Qj9W7OqdJaMJyvSp57hvT6ljCsnEf5ZyfaKvkM,3751
|
||||
coverage/bytecode.py,sha256=n_4YzE8Gas37i0mRgwvbTgu4v6yfekCh4qWZ7YVq0tk,6666
|
||||
coverage/cmdline.py,sha256=t7l_LoWAUhUuEmMogiVEAOducHdrudqmwezrZxVhaYE,36819
|
||||
coverage/collector.py,sha256=doMi0mv8Z-zDY3kf7NJifLjH3Kz7QuXr3o9aSrHzMTQ,18541
|
||||
coverage/config.py,sha256=tXVjZ0EwLI9oxEcRCVJZRiDktCXoUpD1d7L0JNvBM5Y,25964
|
||||
coverage/context.py,sha256=Ef1NlMuuD5g2Z3vJhK9fr6yg_NxOYTJmGTACRLU1uno,2434
|
||||
coverage/control.py,sha256=ZH_GxR7uc9uJBOkj1IKv0xsJP-63g3JuEDe21QQHz88,54818
|
||||
coverage/core.py,sha256=wQG--Xm1Hvyt_jYO7VgfP-CT2vE1o4zIbFI2CtfTsXw,5404
|
||||
coverage/data.py,sha256=b-4KXkMlpocqS-T_HHa1LlPOxnz-I35OpcH4ztfvYP4,8127
|
||||
coverage/debug.py,sha256=5f1JSbSVeQnulJTOu0E_kelo29cih5A9gS2o27OX3h8,21753
|
||||
coverage/disposition.py,sha256=T6p5yH1b6dnnsXq7YI9nbP8UAqFk6V9PyFOivkV5Qr8,1897
|
||||
coverage/env.py,sha256=_0HqQJiQIeY44ziVwiMohYIaox0btbc2fLoJMnSt1RI,4972
|
||||
coverage/exceptions.py,sha256=VD6utQATQ5GRIAK0SPJyOlL2och54qRfVD9vlt9EElA,1640
|
||||
coverage/execfile.py,sha256=IL3TzwhAxiMLs6QwUvF-HK-A2Scjgh8GjkpOKhcWFtY,11993
|
||||
coverage/files.py,sha256=WrI3dw_zEMG1YNS6674vFP9TPoUXvXg0itxVSWeOoNc,19357
|
||||
coverage/html.py,sha256=hQVh56hKJcF_v0Di02Gd-ov22_MCYF29f3A-0lHwZmg,31524
|
||||
coverage/htmlfiles/coverage_html.js,sha256=c3j5ad-4xXqf3u_aBPpiNhoHYn2mTYsKmercXP2XW3M,25450
|
||||
coverage/htmlfiles/favicon_32.png,sha256=vIEA-odDwRvSQ-syWfSwEnWGUWEv2b-Tv4tzTRfwJWE,1732
|
||||
coverage/htmlfiles/index.html,sha256=8_Resfvt6vgAJs82-dF5gtKCjkPp8by8PMff4eWmMkU,8702
|
||||
coverage/htmlfiles/keybd_closed.png,sha256=fZv4rmY3DkNJtPQjrFJ5UBOE5DdNof3mdeCZWC7TOoo,9004
|
||||
coverage/htmlfiles/pyfile.html,sha256=iBCg74uV_XEcCTP2F02daNZYlIuzzh0vhsZi35zkpGU,6508
|
||||
coverage/htmlfiles/style.css,sha256=vkP6XozR7sM-MQotUpXV03kyobzBvl8rquzommeX58A,15941
|
||||
coverage/htmlfiles/style.scss,sha256=fzKmMXr61ZvtnpvtgbDeA9kSnfNmbFFY7jYmmiP9SxI,21291
|
||||
coverage/inorout.py,sha256=jFUz-I_g50G_8vGR935hWuwXdrNPep3nfnwVYmAVYEQ,24345
|
||||
coverage/jsonreport.py,sha256=mpNhylwzkx3bitcEKOSrvYtP0uAzR4rz1Ofq-JHiwcs,7333
|
||||
coverage/lcovreport.py,sha256=Q9-g1QS7dUO-9ckqxecRs1_18yfxQPcHw-Mu8y2XU1U,7874
|
||||
coverage/misc.py,sha256=iPEV4g_HsXhQmpuzuN1CPy82uF2YLjKOleMnWgXJyDA,11291
|
||||
coverage/multiproc.py,sha256=Y1AeYjch8pD4Zb5HjoW51IVz5yeLDY5-ipIOOk-Adyk,4175
|
||||
coverage/numbits.py,sha256=4B171qTbHyZ0WDnYGjGo456_PC2jDZSe22F9KCrmZ4Q,4673
|
||||
coverage/parser.py,sha256=Toq-DgeZBl_ZawrKpWPDkfAYbLxMLQPJwi4UlWMPDjY,46313
|
||||
coverage/patch.py,sha256=oEcBoH6lcSAB9Y0jxuk3ZbFWqJI05R76fJtMHtsp8PY,5567
|
||||
coverage/phystokens.py,sha256=Z7chMvCxuYMu2Wj9Oc1vlO8dV1OOqZXWfzALsWfEC7s,7450
|
||||
coverage/plugin.py,sha256=4fF3Bq9JVZIIxPUI-DCUGUqeGNzvYldJnqMvP6JlsKY,21509
|
||||
coverage/plugin_support.py,sha256=X0I5D3q7MX2IsZZUBBkJJ6lP3guF-zNo_2oTu1XyePs,10444
|
||||
coverage/py.typed,sha256=_B1ZXy5hKJZ2Zo3jWSXjqy1SO3rnLdZsUULnKGTplfc,72
|
||||
coverage/python.py,sha256=X6-ypbCYnJoihsSj1M5thX_kFRyHjN37ajOHQWo5F1E,8753
|
||||
coverage/pytracer.py,sha256=RBs6GaQQHSEau-eSiuyjIyS64W5Jg61GRVRO2wo1rZA,15322
|
||||
coverage/regions.py,sha256=hIf6Hly1Zsfl4hPA2FQgDtDT6Lcv0fLlFCXmc94WOlY,4500
|
||||
coverage/report.py,sha256=QrMfQaXfghss5g301vp7BudGLaQXD_eaKrFLFFC4Ixg,10818
|
||||
coverage/report_core.py,sha256=xyhYM93YVQUu05fDpPkG1raDtTQyQbzPUjIwrlUf-ns,4044
|
||||
coverage/results.py,sha256=I1SBr07T-EtHdgmOBYj7ivydla7QskEVzqBPiHjrojQ,17242
|
||||
coverage/sqldata.py,sha256=ba76NYiiMWNwfsFWxTrrgjSVKVvA9vw42x4cZv-c_dU,45528
|
||||
coverage/sqlitedb.py,sha256=R6A4B4D0LQNqMUPZTE4W66hC7V5OenHN9hRWb_pXJSg,10024
|
||||
coverage/sysmon.py,sha256=ZDJfR27XU6jSOH4LtrKU6bVqgQxtt2CZHnoz7gJBhnA,19729
|
||||
coverage/templite.py,sha256=OXquHdxqm3SWGY4GnGb6SjCUNa40_yXmzzY3hnV6zNU,11307
|
||||
coverage/tomlconfig.py,sha256=9KXQWUPpnqkmRYFhyJMS8ZOfJ4bG69EsskVXm_NT7j8,7558
|
||||
coverage/tracer.cpython-312-x86_64-linux-gnu.so,sha256=c-WzBMl8koEIhlFYJyUBC3b4PnB6Wl_lAgcgbLrBnSg,129792
|
||||
coverage/tracer.pyi,sha256=53ZiaWNz6q6qWiEZWFMHeLLkbg6-4oBAzNJ2i1-hA-g,1207
|
||||
coverage/types.py,sha256=nOLSWf-CMhaa9h7SMTcueFsklX0vuLdXdmsqzp2Tuqg,5600
|
||||
coverage/version.py,sha256=y8jqxYmM1nutdtr6SU9gzKhY_7sW5jywPrrQq_HS86Q,1094
|
||||
coverage/xmlreport.py,sha256=ayeJ8DEqIX6f9pdRFJvULIGA4WJ8wDR9BEjoKLdK1PA,9871
|
||||
@@ -0,0 +1,7 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (80.9.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp312-cp312-manylinux_2_5_x86_64
|
||||
Tag: cp312-cp312-manylinux1_x86_64
|
||||
Tag: cp312-cp312-manylinux_2_28_x86_64
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
[console_scripts]
|
||||
coverage = coverage.cmdline:main
|
||||
coverage-3.12 = coverage.cmdline:main
|
||||
coverage3 = coverage.cmdline:main
|
||||
@@ -0,0 +1,177 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
@@ -0,0 +1 @@
|
||||
coverage
|
||||
Reference in New Issue
Block a user