summaryrefslogtreecommitdiff
path: root/doc/index.rst
blob: 19ebb2d39e38811d9018fc6e0096262876fdb014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
===========
coverage.py
===========

Contents:

.. toctree::
    :maxdepth: 2

    cmd
    api
    

Coverage.py is a tool for measuring code coverage of Python programs. It monitors
execution of the program, noting lines that are executed.  A later analysis
identifies lines that could have been executed but were not.

There are two supported interfaces to coverage: a :ref:`command line <cmd>` and
an :ref:`API <api>`.