feat(phase1): add image storage utilities
- Create backend/services/image_storage.py with 4 core functions:
- sanitize_filename(): remove unsafe chars, limit to 255 chars, convert to lowercase
- get_unique_filename(): handle collisions with UUID suffix (format: {name}_{uuid8}_{variant}.jpg)
- ensure_image_directories(): create /images/ root and category subdirs on startup
- save_image(): save bytes to /images/{category}/{filename}, returns relative path
- Create comprehensive test suite (22 tests) covering all functionality
- Integrate ensure_image_directories() into FastAPI startup event
- Directory structure: /images/{category}/{filename}
- Collision handling: auto-suffix with UUID if filename exists
- All tests passing, pathlib.Path for safe operations
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,200 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: coverage
|
||||
Version: 7.13.5
|
||||
Summary: Code coverage measurement for Python
|
||||
Home-page: https://github.com/coveragepy/coveragepy
|
||||
Author: Ned Batchelder and 253 others
|
||||
Author-email: ned@nedbatchelder.com
|
||||
License: Apache-2.0
|
||||
Project-URL: Documentation, https://coverage.readthedocs.io/en/7.13.5
|
||||
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: Development Status :: 5 - Production/Stable
|
||||
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
|
||||
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.13.5/
|
||||
.. _GitHub: https://github.com/coveragepy/coveragepy
|
||||
|
||||
|
||||
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.13.5/#quick-start
|
||||
|
||||
|
||||
Change history
|
||||
--------------
|
||||
|
||||
The complete history of changes is on the `change history page`_.
|
||||
|
||||
.. _change history page: https://coverage.readthedocs.io/en/7.13.5/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.13.5/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.13.5/
|
||||
: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,109 @@
|
||||
../../../bin/coverage,sha256=KLush3zMDOuhfDM5-_hEqZwPPnVVFPy_nupnSVeyBEc,240
|
||||
../../../bin/coverage-3.12,sha256=hVE61ht0p3ry5o43RcXAid69erWtQoZycGXBf0cUhwE,262
|
||||
../../../bin/coverage3,sha256=hVE61ht0p3ry5o43RcXAid69erWtQoZycGXBf0cUhwE,262
|
||||
a1_coverage.pth,sha256=7y7QbRmGfsZpwJqAQGBmapzV44OvCp0Rqi3nm3fUSOg,205
|
||||
coverage-7.13.5.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
coverage-7.13.5.dist-info/METADATA,sha256=ps0dNtp87pGUpaw1O_3C0ZtQpNkZmmanH_n0ZNylMt0,8511
|
||||
coverage-7.13.5.dist-info/RECORD,,
|
||||
coverage-7.13.5.dist-info/WHEEL,sha256=jnfgtOKpZgXQY_8bPb3ofgKXDQaHNqKyWvxmOqbQjJY,186
|
||||
coverage-7.13.5.dist-info/entry_points.txt,sha256=a2tv28FJDPhh6CIBspZxfyVD219P_kEH1HbYeXsAt7c,145
|
||||
coverage-7.13.5.dist-info/licenses/LICENSE.txt,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
||||
coverage-7.13.5.dist-info/top_level.txt,sha256=BjhyiIvusb5OJkqCXjRncTF3soKF-mDOby-hxkWwwv0,9
|
||||
coverage/__init__.py,sha256=GMQuJPp0y2RmmQyvjbZPElOWk29-ypSJaqQEiVNgqq4,1045
|
||||
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__/pth_file.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=pwaZmkb-Lmcsb4iXuK0AlIpPv8FmgSLekB-Kct_KsEs,3699
|
||||
coverage/bytecode.py,sha256=qOFNG59hCYLAp8dS8BxX6ClGLKclKAOzNs_wsOlNs0c,8700
|
||||
coverage/cmdline.py,sha256=uW1Zi-BTxS2912Bn-KY95f9do41d3KwesI-yf8bkbQI,37314
|
||||
coverage/collector.py,sha256=8_ACL_0hjwWjM1jLWX0Yjqp3sBVjSgz51W0DRVzzNkg,18578
|
||||
coverage/config.py,sha256=cQ8V7njERglnVlnqWimRWvNgYNWbHDeTxyoDX02drbk,26007
|
||||
coverage/context.py,sha256=Ef1NlMuuD5g2Z3vJhK9fr6yg_NxOYTJmGTACRLU1uno,2434
|
||||
coverage/control.py,sha256=VrRYDWzFMXtUALw5zEDdBMdv7R41Zu20bLPltv3QiU4,55746
|
||||
coverage/core.py,sha256=wQG--Xm1Hvyt_jYO7VgfP-CT2vE1o4zIbFI2CtfTsXw,5404
|
||||
coverage/data.py,sha256=ZvJnvrCFFYfJFMBYZrs9kuMYnFadYE6iKgaiPTfuULc,9037
|
||||
coverage/debug.py,sha256=Kuu5fuFbsFkEAkbstRDBJDMZabmD9nG_AJEHfDIvvX4,21777
|
||||
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=HOekfLO0qGCIjkBr_w3ls6elfI8z6T_ryx2zKO7vwMQ,20279
|
||||
coverage/html.py,sha256=siKUVn75Equi1i3-SIAtT-KCbr3_BOWgG0Npkmcj2BQ,31525
|
||||
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=osr6tQDYrIn-y6PU3z89rncqxP_ijH5Bzmx6SYpDKVI,16104
|
||||
coverage/htmlfiles/style.scss,sha256=PrggL6jPrWjsNO067sQH6XpIgUmXCcFRCNIwdl50BCw,21409
|
||||
coverage/inorout.py,sha256=U7aNs36rN6mLE1CcCOMIl49oQlnDKy7zdJgd1_4c56k,25493
|
||||
coverage/jsonreport.py,sha256=WMXzJs14UCayISPrmThcrUTQJq_2S9ltwIQKG68m3qI,7493
|
||||
coverage/lcovreport.py,sha256=lGpJ1x_bBk9jG2TxoFpfANY0oJCFxSBz6pqd0FiLMHY,7822
|
||||
coverage/misc.py,sha256=0T3vjifs5b23BpytR_O9iB859u-p-7wWzc3tGoe3cVM,11624
|
||||
coverage/multiproc.py,sha256=Y1AeYjch8pD4Zb5HjoW51IVz5yeLDY5-ipIOOk-Adyk,4175
|
||||
coverage/numbits.py,sha256=4B171qTbHyZ0WDnYGjGo456_PC2jDZSe22F9KCrmZ4Q,4673
|
||||
coverage/parser.py,sha256=kk5Rf3IZw3ih_hWD5zkz32kTcgFbI_7r09CTyv7ihIg,44461
|
||||
coverage/patch.py,sha256=j_LjSxvfSZrt1hns2iWQodKoK1lwaGdA_MTd_FSIar8,4149
|
||||
coverage/phystokens.py,sha256=Z7chMvCxuYMu2Wj9Oc1vlO8dV1OOqZXWfzALsWfEC7s,7450
|
||||
coverage/plugin.py,sha256=K7QOTCyx13vI8kFZgh3kIfa8OZOwpaEsirIeXu0kJ-U,21507
|
||||
coverage/plugin_support.py,sha256=4w3OU909yuXjq1tqLAZ8NttCdo3Auqi-bhZD6cGo3T0,10444
|
||||
coverage/pth_file.py,sha256=855A1TBQhQLQyMFngt_yJCOf2m5UGilNtod_qUhwzB0,525
|
||||
coverage/py.typed,sha256=_B1ZXy5hKJZ2Zo3jWSXjqy1SO3rnLdZsUULnKGTplfc,72
|
||||
coverage/python.py,sha256=3T1qqL5APyt29WikYOooVFU3BBnSCighDMJWR9rV_tk,8762
|
||||
coverage/pytracer.py,sha256=1U0Xot-7TVsSe62h33ExLUW35_8WKbXA2LmdJjc3UKU,15349
|
||||
coverage/regions.py,sha256=jrH3lucepKV_T5kZ2706KBAYKn-yyxz_uGHIYRc6t1Q,4503
|
||||
coverage/report.py,sha256=ryTuIQiVJvY0pS8QxsiiR6hJJtMf555yErBm7BbSNmE,10998
|
||||
coverage/report_core.py,sha256=yZi3IfUSvkTr9-k7RGyNkDN3hlfd6p0_7G5Bjx7_Spg,3997
|
||||
coverage/results.py,sha256=7CVtHJn5HmG_dhZfMLk2RUN9cnmDQuXZy_rQqZtCFWA,17246
|
||||
coverage/sqldata.py,sha256=iJPNH-pTu2zvw_OzsQ4yXFTV16uCEKhNz3WL3miw3bo,47402
|
||||
coverage/sqlitedb.py,sha256=rcv-iX5bb7h_VfMnmDvbJx8UZCrDvm1uzLzKerKFFjE,9327
|
||||
coverage/sysmon.py,sha256=nrftO67pr1ZJurkPQI-z-JluGiQpbJ0pEpsQSMDKG80,19235
|
||||
coverage/templite.py,sha256=t8G9PGY3uSXpkjVVjqO_NFpv0LRM2J6BEJah8TVZG34,11334
|
||||
coverage/tomlconfig.py,sha256=CeL-Qu6ptVmi7mLtaAtkD8mcC9LGRFz17G7hxhvyPA4,7616
|
||||
coverage/tracer.cpython-312-x86_64-linux-gnu.so,sha256=tHqGeMWQtuJUZTKt9PgtgkgrY2FUoV6uCwkbJ2qSdcY,129792
|
||||
coverage/tracer.pyi,sha256=53ZiaWNz6q6qWiEZWFMHeLLkbg6-4oBAzNJ2i1-hA-g,1207
|
||||
coverage/types.py,sha256=ZZr6B-2CdZYhfKIyTHepYjDr_KtQTVKnFaY498V407M,5497
|
||||
coverage/version.py,sha256=tce8L7RWhejCD-kzYinrW_NweImL8gwiR4uFxuQsVrY,1094
|
||||
coverage/xmlreport.py,sha256=yvlv6SXiFvpib2rYOQ7r793DesQCrh6DaPj-OkG_fpY,9819
|
||||
@@ -0,0 +1,7 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (82.0.1)
|
||||
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_deprecated
|
||||
coverage3 = coverage.cmdline:main_deprecated
|
||||
@@ -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