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