https://github.com/pytest-dev/pytest-cov
Coverage plugin for pytest.
https://github.com/pytest-dev/pytest-cov
pytest python
Last synced: about 11 hours ago
JSON representation
Coverage plugin for pytest.
- Host: GitHub
- URL: https://github.com/pytest-dev/pytest-cov
- Owner: pytest-dev
- License: mit
- Created: 2014-04-17T20:01:12.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2025-04-05T14:07:55.000Z (9 months ago)
- Last Synced: 2025-05-06T01:58:35.142Z (8 months ago)
- Topics: pytest, python
- Language: Python
- Homepage:
- Size: 1000 KB
- Stars: 1,864
- Watchers: 41
- Forks: 213
- Open Issues: 148
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Security: SECURITY.md
- Authors: AUTHORS.rst
Awesome Lists containing this project
- jimsghstars - pytest-dev/pytest-cov - Coverage plugin for pytest. (Python)
- best-of-python-dev - GitHub - 34% open · ⏱️ 08.11.2025): (Testing Tools)
README
========
Overview
========
.. start-badges
.. list-table::
:stub-columns: 1
* - docs
- |docs|
* - tests
- |github-actions|
* - package
- |version| |conda-forge| |wheel| |supported-versions| |supported-implementations| |commits-since|
.. |docs| image:: https://readthedocs.org/projects/pytest-cov/badge/?style=flat
:target: https://readthedocs.org/projects/pytest-cov/
:alt: Documentation Status
.. |github-actions| image:: https://github.com/pytest-dev/pytest-cov/actions/workflows/test.yml/badge.svg
:alt: GitHub Actions Status
:target: https://github.com/pytest-dev/pytest-cov/actions
.. |version| image:: https://img.shields.io/pypi/v/pytest-cov.svg
:alt: PyPI Package latest release
:target: https://pypi.org/project/pytest-cov
.. |conda-forge| image:: https://img.shields.io/conda/vn/conda-forge/pytest-cov.svg
:target: https://anaconda.org/conda-forge/pytest-cov
.. |wheel| image:: https://img.shields.io/pypi/wheel/pytest-cov.svg
:alt: PyPI Wheel
:target: https://pypi.org/project/pytest-cov
.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/pytest-cov.svg
:alt: Supported versions
:target: https://pypi.org/project/pytest-cov
.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/pytest-cov.svg
:alt: Supported implementations
:target: https://pypi.org/project/pytest-cov
.. |commits-since| image:: https://img.shields.io/github/commits-since/pytest-dev/pytest-cov/v7.0.0.svg
:alt: Commits since latest release
:target: https://github.com/pytest-dev/pytest-cov/compare/v7.0.0...master
.. end-badges
This plugin provides coverage functionality as a pytest plugin. Compared to just using ``coverage run`` this plugin does some extras:
* Automatic erasing and combination of .coverage files and default reporting.
* Support for detailed coverage contexts (add ``--cov-context=test`` to have the full test name including parametrization as the context).
* Xdist support: you can use all of pytest-xdist's features including remote interpreters and still get coverage.
* Consistent pytest behavior. If you run ``coverage run -m pytest`` you will have slightly different ``sys.path`` (CWD will be
in it, unlike when running ``pytest``).
All features offered by the coverage package should work, either through pytest-cov's command line options or
through coverage's config file.
* Free software: MIT license
Installation
============
Install with pip::
pip install pytest-cov
For distributed testing support install pytest-xdist::
pip install pytest-xdist
Upgrading from pytest-cov 6.3
-----------------------------
`pytest-cov 6.3` and older were using a ``.pth`` file to enable coverage measurements in subprocesses. This was removed in `pytest-cov 7` - use `coverage's patch options `_ to enable subprocess measurements.
Uninstalling
------------
Uninstall with pip::
pip uninstall pytest-cov
Under certain scenarios a stray ``.pth`` file may be left around in site-packages.
* `pytest-cov 2.0` may leave a ``pytest-cov.pth`` if you installed without wheels
(``easy_install``, ``setup.py install`` etc).
* `pytest-cov 1.8 or older` will leave a ``init_cov_core.pth``.
Usage
=====
::
pytest --cov=myproj tests/
Would produce a report like::
-------------------- coverage: ... ---------------------
Name Stmts Miss Cover
----------------------------------------
myproj/__init__ 2 0 100%
myproj/myproj 257 13 94%
myproj/feature4286 94 7 92%
----------------------------------------
TOTAL 353 20 94%
Documentation
=============
https://pytest-cov.readthedocs.io/en/latest/
Coverage Data File
==================
The data file is erased at the beginning of testing to ensure clean data for each test run. If you
need to combine the coverage of several test runs you can use the ``--cov-append`` option to append
this coverage data to coverage data from previous test runs.
The data file is left at the end of testing so that it is possible to use normal coverage tools to
examine it.
Limitations
===========
For distributed testing the workers must have the pytest-cov package installed. This is needed since
the plugin must be registered through setuptools for pytest to start the plugin on the
worker.
Security
========
To report a security vulnerability please use the `Tidelift security contact `_.
Tidelift will coordinate the fix and disclosure.
Acknowledgements
================
Whilst this plugin has been built fresh from the ground up it has been influenced by the work done
on pytest-coverage (Ross Lawley, James Mills, Holger Krekel) and nose-cover (Jason Pellerin) which are
other coverage plugins.
Ned Batchelder for coverage and its ability to combine the coverage results of parallel runs.
Holger Krekel for pytest with its distributed testing support.
Jason Pellerin for nose.
Michael Foord for unittest2.
No doubt others have contributed to these tools as well.