README.chromium
1 Name: coverage.py
2 Short Name: coverage
3 URL: https://pypi.python.org/pypi/coverage
4 Version: 4.0.3
5 Date: 2015-11-24
6 License: Apache 2.0
7 License File: LICENSE.txt
8 Security Critical: no
9
10 Description:
11 Coverage.py measures code coverage, typically during test execution. It uses the
12 code analysis tools and tracing hooks provided in the Python standard library to
13 determine which lines are executable, and which have been executed.
14
15 Local Modifications:
16 Removed '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 ===========
5 Coverage.py
6 ===========
7
8 Code coverage testing for Python.
9
10 | |license| |versions| |status| |docs|
11 | |ci-status| |win-ci-status| |codecov|
12 | |kit| |format| |downloads|
13
14 Coverage.py measures code coverage, typically during test execution. It uses
15 the code analysis tools and tracing hooks provided in the Python standard
16 library to determine which lines are executable, and which have been executed.
17
18 Coverage.py runs on CPython 2.6, 2.7, 3.3, 3.4 and 3.5; PyPy 2.4, 2.6 and 4.0;
19 and PyPy3 2.4.
20
21 Documentation is on `Read the Docs <http://coverage.readthedocs.org>`_.
22 Code repository and issue tracker are on `Bitbucket <http://bitbucket.org/ned/coveragepy>`_,
23 with a mirrored repository on `GitHub <https://github.com/nedbat/coveragepy>`_.
24
25 **New in 4.0:** ``--concurrency``, plugins for non-Python files, setup.cfg
26 support, --skip-covered, HTML filtering, and more than 50 issues closed.
27
28
29 Getting Started
30 ---------------
31
32 See the `quick start <http://coverage.readthedocs.org/#quick-start>`_
33 section of the docs.
34
35
36 License
37 -------
38
39 Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0.
40 For 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