Home | History | Annotate | only in /external/chromium-trace/catapult/third_party/coverage
Up to higher level directory
NameDateSize
.travis.yml06-Dec-2016509
__main__.py06-Dec-2016732
appveyor.yml06-Dec-20163.6K
AUTHORS.txt06-Dec-20161K
CHANGES.rst06-Dec-201664.9K
ci/06-Dec-2016
circle.yml06-Dec-2016318
coverage/06-Dec-2016
coverage.egg-info/06-Dec-2016
howto.txt06-Dec-20163.2K
igor.py06-Dec-201612K
LICENSE.txt06-Dec-20169.9K
Makefile06-Dec-20162.8K
MANIFEST.in06-Dec-20161.1K
metacov.ini06-Dec-2016771
NOTICE.txt06-Dec-2016681
PKG-INFO06-Dec-20164.7K
pylintrc06-Dec-201610.4K
README.chromium06-Dec-2016512
README.rst06-Dec-20163.1K
requirements/06-Dec-2016
setup.cfg06-Dec-201659
setup.py06-Dec-20166K
TODO.txt06-Dec-20169.3K
tox.ini06-Dec-20162K
tox_wheels.ini06-Dec-2016328

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