• Home
  • History
  • Annotate
  • only in /external/chromium-trace/catapult/third_party/coverage/
NameDateSize

..23-Aug-20164 KiB

.travis.yml23-Aug-2016509

__main__.py23-Aug-2016732

appveyor.yml23-Aug-20163.6 KiB

AUTHORS.txt23-Aug-20161 KiB

CHANGES.rst23-Aug-201664.9 KiB

ci/23-Aug-20164 KiB

circle.yml23-Aug-2016318

coverage/23-Aug-20164 KiB

coverage.egg-info/23-Aug-20164 KiB

howto.txt23-Aug-20163.2 KiB

igor.py23-Aug-201612 KiB

LICENSE.txt23-Aug-20169.9 KiB

Makefile23-Aug-20162.8 KiB

MANIFEST.in23-Aug-20161.1 KiB

metacov.ini23-Aug-2016771

NOTICE.txt23-Aug-2016681

PKG-INFO23-Aug-20164.7 KiB

pylintrc23-Aug-201610.4 KiB

README.chromium23-Aug-2016512

README.rst23-Aug-20163.1 KiB

requirements/23-Aug-20164 KiB

setup.cfg23-Aug-201659

setup.py23-Aug-20166 KiB

TODO.txt23-Aug-20169.3 KiB

tox.ini23-Aug-20162 KiB

tox_wheels.ini23-Aug-2016328

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