• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

ci/22-Nov-2023-423350

coverage/22-Nov-2023-11,5508,164

coverage.egg-info/22-Nov-2023-389369

requirements/22-Nov-2023-2821

.travis.ymlD22-Nov-2023509 2718

AUTHORS.txtD22-Nov-20231 KiB7067

CHANGES.rstD22-Nov-202364.9 KiB1,5011,031

LICENSE.txtD22-Nov-20239.9 KiB178150

MANIFEST.inD22-Nov-20231.1 KiB4738

MakefileD22-Nov-20232.8 KiB11377

NOTICE.txtD22-Nov-2023681 1511

PKG-INFOD22-Nov-20234.7 KiB10184

README.chromiumD22-Nov-2023512 1714

README.rstD22-Nov-20233.1 KiB7660

TODO.txtD22-Nov-20239.3 KiB286239

__main__.pyD22-Nov-2023732 1912

appveyor.ymlD22-Nov-20233.6 KiB13186

circle.ymlD22-Nov-2023318 1913

howto.txtD22-Nov-20233.2 KiB10087

igor.pyD22-Nov-202312 KiB391288

metacov.iniD22-Nov-2023771 3630

pylintrcD22-Nov-202310.4 KiB346257

setup.cfgD22-Nov-202359 64

setup.pyD22-Nov-20236 KiB198134

tox.iniD22-Nov-20232 KiB7458

tox_wheels.iniD22-Nov-2023328 1410

README.chromium

1Name: coverage.py
2Short Name: coverage
3URL: https://pypi.python.org/pypi/coverage
4Version: 4.0.3
5Date: 2015-11-24
6License: Apache 2.0
7License File: LICENSE.txt
8Security Critical: no
9
10Description:
11Coverage.py measures code coverage, typically during test execution. It uses the
12code analysis tools and tracing hooks provided in the Python standard library to
13determine which lines are executable, and which have been executed.
14
15Local Modifications:
16Removed 'doc' and 'test' directories to reduce total file size.
17

README.rst

1.. Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
2.. For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
3
4===========
5Coverage.py
6===========
7
8Code coverage testing for Python.
9
10|  |license| |versions| |status| |docs|
11|  |ci-status| |win-ci-status| |codecov|
12|  |kit| |format| |downloads|
13
14Coverage.py measures code coverage, typically during test execution. It uses
15the code analysis tools and tracing hooks provided in the Python standard
16library to determine which lines are executable, and which have been executed.
17
18Coverage.py runs on CPython 2.6, 2.7, 3.3, 3.4 and 3.5; PyPy 2.4, 2.6 and 4.0;
19and PyPy3 2.4.
20
21Documentation is on `Read the Docs <http://coverage.readthedocs.org>`_.
22Code repository and issue tracker are on `Bitbucket <http://bitbucket.org/ned/coveragepy>`_,
23with a mirrored repository on `GitHub <https://github.com/nedbat/coveragepy>`_.
24
25**New in 4.0:** ``--concurrency``, plugins for non-Python files, setup.cfg
26support, --skip-covered, HTML filtering, and more than 50 issues closed.
27
28
29Getting Started
30---------------
31
32See the `quick start <http://coverage.readthedocs.org/#quick-start>`_
33section of the docs.
34
35
36License
37-------
38
39Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0.
40For details, see https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt.
41
42
43.. |ci-status| image:: https://travis-ci.org/nedbat/coveragepy.svg?branch=master
44    :target: https://travis-ci.org/nedbat/coveragepy
45    :alt: Build status
46.. |win-ci-status| image:: https://ci.appveyor.com/api/projects/status/bitbucket/ned/coveragepy?svg=true
47    :target: https://ci.appveyor.com/project/nedbat/coveragepy
48    :alt: Windows build status
49.. |docs| image:: https://readthedocs.org/projects/coverage/badge/?version=latest&style=flat
50    :target: http://coverage.readthedocs.org
51    :alt: Documentation
52.. |reqs| image:: https://requires.io/github/nedbat/coveragepy/requirements.svg?branch=master
53    :target: https://requires.io/github/nedbat/coveragepy/requirements/?branch=master
54    :alt: Requirements status
55.. |kit| image:: https://badge.fury.io/py/coverage.svg
56    :target: https://pypi.python.org/pypi/coverage
57    :alt: PyPI status
58.. |format| image:: https://img.shields.io/pypi/format/coverage.svg
59    :target: https://pypi.python.org/pypi/coverage
60    :alt: Kit format
61.. |downloads| image:: https://img.shields.io/pypi/dd/coverage.svg
62    :target: https://pypi.python.org/pypi/coverage
63    :alt: Daily PyPI downloads
64.. |versions| image:: https://img.shields.io/pypi/pyversions/coverage.svg
65    :target: https://pypi.python.org/pypi/coverage
66    :alt: Python versions supported
67.. |status| image:: https://img.shields.io/pypi/status/coverage.svg
68    :target: https://pypi.python.org/pypi/coverage
69    :alt: Package stability
70.. |license| image:: https://img.shields.io/pypi/l/coverage.svg
71    :target: https://pypi.python.org/pypi/coverage
72    :alt: License
73.. |codecov| image:: http://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master
74    :target: http://codecov.io/github/nedbat/coveragepy?branch=master
75    :alt: Coverage!
76