PKG-INFO 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. Metadata-Version: 1.1
  2. Name: coverage
  3. Version: 4.2
  4. Summary: Code coverage measurement for Python
  5. Home-page: https://coverage.readthedocs.io
  6. Author: Ned Batchelder and others
  7. Author-email: ned@nedbatchelder.com
  8. License: Apache 2.0
  9. Description: .. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
  10. .. For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
  11. ===========
  12. Coverage.py
  13. ===========
  14. Code coverage testing for Python.
  15. | |license| |versions| |status| |docs|
  16. | |ci-status| |win-ci-status| |codecov|
  17. | |kit| |format| |downloads|
  18. Coverage.py measures code coverage, typically during test execution. It uses
  19. the code analysis tools and tracing hooks provided in the Python standard
  20. library to determine which lines are executable, and which have been executed.
  21. Coverage.py runs on CPython 2.6, 2.7, and 3.3 through 3.6; PyPy 4.0 and 5.1;
  22. and PyPy3 2.4.
  23. Documentation is on `Read the Docs <https://coverage.readthedocs.io>`_.
  24. Code repository and issue tracker are on `Bitbucket <http://bitbucket.org/ned/coveragepy>`_,
  25. with a mirrored repository on `GitHub <https://github.com/nedbat/coveragepy>`_.
  26. **New in 4.2:** better support for multiprocessing and combining data.
  27. New in 4.1: much-improved branch coverage.
  28. New in 4.0: ``--concurrency``, plugins for non-Python files, setup.cfg
  29. support, --skip-covered, HTML filtering, and more than 50 issues closed.
  30. Getting Started
  31. ---------------
  32. See the `quick start <https://coverage.readthedocs.io/#quick-start>`_
  33. section of the docs.
  34. License
  35. -------
  36. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0.
  37. For details, see https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt.
  38. .. |ci-status| image:: https://travis-ci.org/nedbat/coveragepy.svg?branch=master
  39. :target: https://travis-ci.org/nedbat/coveragepy
  40. :alt: Build status
  41. .. |win-ci-status| image:: https://ci.appveyor.com/api/projects/status/bitbucket/ned/coveragepy?svg=true
  42. :target: https://ci.appveyor.com/project/nedbat/coveragepy
  43. :alt: Windows build status
  44. .. |docs| image:: https://readthedocs.org/projects/coverage/badge/?version=latest&style=flat
  45. :target: https://coverage.readthedocs.io
  46. :alt: Documentation
  47. .. |reqs| image:: https://requires.io/github/nedbat/coveragepy/requirements.svg?branch=master
  48. :target: https://requires.io/github/nedbat/coveragepy/requirements/?branch=master
  49. :alt: Requirements status
  50. .. |kit| image:: https://badge.fury.io/py/coverage.svg
  51. :target: https://pypi.python.org/pypi/coverage
  52. :alt: PyPI status
  53. .. |format| image:: https://img.shields.io/pypi/format/coverage.svg
  54. :target: https://pypi.python.org/pypi/coverage
  55. :alt: Kit format
  56. .. |downloads| image:: https://img.shields.io/pypi/dw/coverage.svg
  57. :target: https://pypi.python.org/pypi/coverage
  58. :alt: Weekly PyPI downloads
  59. .. |versions| image:: https://img.shields.io/pypi/pyversions/coverage.svg
  60. :target: https://pypi.python.org/pypi/coverage
  61. :alt: Python versions supported
  62. .. |status| image:: https://img.shields.io/pypi/status/coverage.svg
  63. :target: https://pypi.python.org/pypi/coverage
  64. :alt: Package stability
  65. .. |license| image:: https://img.shields.io/pypi/l/coverage.svg
  66. :target: https://pypi.python.org/pypi/coverage
  67. :alt: License
  68. .. |codecov| image:: http://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master
  69. :target: http://codecov.io/github/nedbat/coveragepy?branch=master
  70. :alt: Coverage!
  71. Keywords: code coverage testing
  72. Platform: UNKNOWN
  73. Classifier: Environment :: Console
  74. Classifier: Intended Audience :: Developers
  75. Classifier: License :: OSI Approved :: Apache Software License
  76. Classifier: Operating System :: OS Independent
  77. Classifier: Programming Language :: Python :: 2.6
  78. Classifier: Programming Language :: Python :: 2.7
  79. Classifier: Programming Language :: Python :: 3.3
  80. Classifier: Programming Language :: Python :: 3.4
  81. Classifier: Programming Language :: Python :: 3.5
  82. Classifier: Programming Language :: Python :: 3.6
  83. Classifier: Programming Language :: Python :: Implementation :: CPython
  84. Classifier: Programming Language :: Python :: Implementation :: PyPy
  85. Classifier: Topic :: Software Development :: Quality Assurance
  86. Classifier: Topic :: Software Development :: Testing
  87. Classifier: Development Status :: 5 - Production/Stable