{ "info": { "author": "Marc Schlaich", "author_email": "marc.schlaich@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Pytest", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Testing", "Topic :: Utilities" ], "description": "========\nOverview\n========\n\n.. start-badges\n\n.. list-table::\n :stub-columns: 1\n\n * - docs\n - |docs|\n * - tests\n - | |travis| |appveyor| |requires|\n * - package\n - | |version| |conda-forge| |wheel| |supported-versions| |supported-implementations|\n | |commits-since|\n\n.. |docs| image:: https://readthedocs.org/projects/pytest-cov/badge/?style=flat\n :target: https://readthedocs.org/projects/pytest-cov\n :alt: Documentation Status\n\n.. |travis| image:: https://travis-ci.org/pytest-dev/pytest-cov.svg?branch=master\n :alt: Travis-CI Build Status\n :target: https://travis-ci.org/pytest-dev/pytest-cov\n\n.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/pytest-dev/pytest-cov?branch=master&svg=true\n :alt: AppVeyor Build Status\n :target: https://ci.appveyor.com/project/pytestbot/pytest-cov\n\n.. |requires| image:: https://requires.io/github/pytest-dev/pytest-cov/requirements.svg?branch=master\n :alt: Requirements Status\n :target: https://requires.io/github/pytest-dev/pytest-cov/requirements/?branch=master\n\n.. |version| image:: https://img.shields.io/pypi/v/pytest-cov.svg\n :alt: PyPI Package latest release\n :target: https://pypi.python.org/pypi/pytest-cov\n\n.. |conda-forge| image:: https://img.shields.io/conda/vn/conda-forge/pytest-cov.svg\n :target: https://anaconda.org/conda-forge/pytest-cov\n\n.. |commits-since| image:: https://img.shields.io/github/commits-since/pytest-dev/pytest-cov/v2.8.1.svg\n :alt: Commits since latest release\n :target: https://github.com/pytest-dev/pytest-cov/compare/v2.8.1...master\n\n.. |wheel| image:: https://img.shields.io/pypi/wheel/pytest-cov.svg\n :alt: PyPI Wheel\n :target: https://pypi.python.org/pypi/pytest-cov\n\n.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/pytest-cov.svg\n :alt: Supported versions\n :target: https://pypi.python.org/pypi/pytest-cov\n\n.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/pytest-cov.svg\n :alt: Supported implementations\n :target: https://pypi.python.org/pypi/pytest-cov\n\n.. end-badges\n\nThis plugin produces coverage reports. Compared to just using ``coverage run`` this plugin does some extras:\n\n* Subprocess support: you can fork or run stuff in a subprocess and will get covered without any fuss.\n* Xdist support: you can use all of pytest-xdist's features and still get coverage.\n* Consistent pytest behavior. If you run ``coverage run -m pytest`` you will have slightly different ``sys.path`` (CWD will be\n in it, unlike when running ``pytest``).\n\nAll features offered by the coverage package should work, either through pytest-cov's command line options or\nthrough coverage's config file.\n\n* Free software: MIT license\n\nInstallation\n============\n\nInstall with pip::\n\n pip install pytest-cov\n\nFor distributed testing support install pytest-xdist::\n\n pip install pytest-xdist\n\nUpgrading from ancient pytest-cov\n---------------------------------\n\n`pytest-cov 2.0` is using a new ``.pth`` file (``pytest-cov.pth``). You may want to manually remove the older\n``init_cov_core.pth`` from site-packages as it's not automatically removed.\n\nUninstalling\n------------\n\nUninstall with pip::\n\n pip uninstall pytest-cov\n\nUnder certain scenarios a stray ``.pth`` file may be left around in site-packages.\n\n* `pytest-cov 2.0` may leave a ``pytest-cov.pth`` if you installed without wheels\n (``easy_install``, ``setup.py install`` etc).\n* `pytest-cov 1.8 or older` will leave a ``init_cov_core.pth``.\n\nUsage\n=====\n\n::\n\n pytest --cov=myproj tests/\n\nWould produce a report like::\n\n -------------------- coverage: ... ---------------------\n Name Stmts Miss Cover\n ----------------------------------------\n myproj/__init__ 2 0 100%\n myproj/myproj 257 13 94%\n myproj/feature4286 94 7 92%\n ----------------------------------------\n TOTAL 353 20 94%\n\nDocumentation\n=============\n\n http://pytest-cov.rtfd.org/\n\n\n\n\n\n\nCoverage Data File\n==================\n\nThe data file is erased at the beginning of testing to ensure clean data for each test run. If you\nneed to combine the coverage of several test runs you can use the ``--cov-append`` option to append\nthis coverage data to coverage data from previous test runs.\n\nThe data file is left at the end of testing so that it is possible to use normal coverage tools to\nexamine it.\n\nLimitations\n===========\n\nFor distributed testing the workers must have the pytest-cov package installed. This is needed since\nthe plugin must be registered through setuptools for pytest to start the plugin on the\nworker.\n\nFor subprocess measurement environment variables must make it from the main process to the\nsubprocess. The python used by the subprocess must have pytest-cov installed. The subprocess must\ndo normal site initialisation so that the environment variables can be detected and coverage\nstarted.\n\n\nAcknowledgements\n================\n\nWhilst this plugin has been built fresh from the ground up it has been influenced by the work done\non pytest-coverage (Ross Lawley, James Mills, Holger Krekel) and nose-cover (Jason Pellerin) which are\nother coverage plugins.\n\nNed Batchelder for coverage and its ability to combine the coverage results of parallel runs.\n\nHolger Krekel for pytest with its distributed testing support.\n\nJason Pellerin for nose.\n\nMichael Foord for unittest2.\n\nNo doubt others have contributed to these tools as well.\n\nChangelog\n=========\n\n2.8.1 (2019-10-05)\n------------------\n\n* Fixed `#348 `_ -\n regression when only certain reports (html or xml) are used then ``--cov-fail-under`` always fails.\n\n2.8.0 (2019-10-04)\n------------------\n\n* Fixed ``RecursionError`` that can occur when using\n `cleanup_on_signal `__ or\n `cleanup_on_sigterm `__.\n See: `#294 `_.\n The 2.7.x releases of pytest-cov should be considered broken regarding aforementioned cleanup API.\n* Added compatibility with future xdist release that deprecates some internals\n (match pytest-xdist master/worker terminology).\n Contributed by Thomas Grainger in `#321 `_\n* Fixed breakage that occurs when multiple reporting options are used.\n Contributed by Thomas Grainger in `#338 `_.\n* Changed internals to use a stub instead of ``os.devnull``.\n Contributed by Thomas Grainger in `#332 `_.\n* Added support for Coverage 5.0.\n Contributed by Ned Batchelder in `#319 `_.\n* Added support for float values in ``--cov-fail-under``.\n Contributed by Mart\u00edn Gait\u00e1n in `#311 `_.\n* Various documentation fixes. Contributed by\n Juanjo Baz\u00e1n,\n Andrew Murray and\n Albert Tugushev in\n `#298 `_,\n `#299 `_ and\n `#307 `_.\n* Various testing improvements. Contributed by\n Ned Batchelder,\n Daniel Hahler,\n Ionel Cristian M\u0103rie\u0219 and\n Hugo van Kemenade in\n `#313 `_,\n `#314 `_,\n `#315 `_,\n `#316 `_,\n `#325 `_,\n `#326 `_,\n `#334 `_ and\n `#335 `_.\n* Added the ``--cov-context`` CLI options that enables coverage contexts. Only works with coverage 5.0+.\n Contributed by Ned Batchelder in `#345 `_.\n\n2.7.1 (2019-05-03)\n------------------\n\n* Fixed source distribution manifest so that garbage ain't included in the tarball.\n\n2.7.0 (2019-05-03)\n------------------\n\n* Fixed ``AttributeError: 'NoneType' object has no attribute 'configure_node'`` error when ``--no-cov`` is used.\n Contributed by Alexander Shadchin in `#263 `_.\n* Various testing and CI improvements. Contributed by Daniel Hahler in\n `#255 `_,\n `#266 `_,\n `#272 `_,\n `#271 `_ and\n `#269 `_.\n* Improved documentation regarding subprocess and multiprocessing.\n Contributed in `#265 `_.\n* Improved ``pytest_cov.embed.cleanup_on_sigterm`` to be reentrant (signal deliveries while signal handling is\n running won't break stuff).\n* Added ``pytest_cov.embed.cleanup_on_signal`` for customized cleanup.\n* Improved cleanup code and fixed various issues with leftover data files. All contributed in\n `#265 `_ or\n `#262 `_.\n* Improved examples. Now there are two examples for the common project layouts, complete with working coverage\n configuration. The examples have CI testing. Contributed in\n `#267 `_.\n* Improved help text for CLI options.\n\n2.6.1 (2019-01-07)\n------------------\n\n* Added support for Pytest 4.1. Contributed by Daniel Hahler and \u0421\u0435\u043c\u0451\u043d \u041c\u0430\u0440\u044c\u044f\u0441\u0438\u043d in\n `#253 `_ and\n `#230 `_.\n* Various test and docs fixes. Contributed by Daniel Hahler in\n `#224 `_ and\n `#223 `_.\n* Fixed the \"Module already imported\" issue (`#211 `_).\n Contributed by Daniel Hahler in `#228 `_.\n\n2.6.0 (2018-09-03)\n------------------\n\n* Dropped support for Python < 3.4, Pytest < 3.5 and Coverage < 4.4.\n* Fixed some documentation formatting. Contributed by Jean Jordaan and Julian.\n* Added an example with ``addopts`` in documentation. Contributed by Samuel Giffard in\n `#195 `_.\n* Fixed ``TypeError: 'NoneType' object is not iterable`` in certain xdist configurations. Contributed by Jeremy Bowman in\n `#213 `_.\n* Added a ``no_cover`` marker and fixture. Fixes\n `#78 `_.\n* Fixed broken ``no_cover`` check when running doctests. Contributed by Terence Honles in\n `#200 `_.\n* Fixed various issues with path normalization in reports (when combining coverage data from parallel mode). Fixes\n `#130 `_.\n Contributed by Ryan Hiebert & Ionel Cristian M\u0103rie\u0219 in\n `#178 `_.\n* Report generation failures don't raise exceptions anymore. A warning will be logged instead. Fixes\n `#161 `_.\n* Fixed multiprocessing issue on Windows (empty env vars are not passed). Fixes\n `#165 `_.\n\n2.5.1 (2017-05-11)\n------------------\n\n* Fixed xdist breakage (regression in ``2.5.0``).\n Fixes `#157 `_.\n* Allow setting custom ``data_file`` name in ``.coveragerc``.\n Fixes `#145 `_.\n Contributed by Jannis Leidel & Ionel Cristian M\u0103rie\u0219 in\n `#156 `_.\n\n2.5.0 (2017-05-09)\n------------------\n\n* Always show a summary when ``--cov-fail-under`` is used. Contributed by Francis Niu in `PR#141\n `_.\n* Added ``--cov-branch`` option. Fixes `#85 `_.\n* Improve exception handling in subprocess setup. Fixes `#144 `_.\n* Fixed handling when ``--cov`` is used multiple times. Fixes `#151 `_.\n\n2.4.0 (2016-10-10)\n------------------\n\n* Added a \"disarm\" option: ``--no-cov``. It will disable coverage measurements. Contributed by Zoltan Kozma in\n `PR#135 `_.\n\n **WARNING: Do not put this in your configuration files, it's meant to be an one-off for situations where you want to\n disable coverage from command line.**\n* Fixed broken exception handling on ``.pth`` file. See `#136 `_.\n\n2.3.1 (2016-08-07)\n------------------\n\n* Fixed regression causing spurious errors when xdist was used. See `#124\n `_.\n* Fixed DeprecationWarning about incorrect `addoption` use. Contributed by Florian Bruhin in `PR#127\n `_.\n* Fixed deprecated use of funcarg fixture API. Contributed by Daniel Hahler in `PR#125\n `_.\n\n2.3.0 (2016-07-05)\n------------------\n\n* Add support for specifying output location for html, xml, and annotate report.\n Contributed by Patrick Lannigan in `PR#113 `_.\n* Fix bug hiding test failure when cov-fail-under failed.\n* For coverage >= 4.0, match the default behaviour of `coverage report` and\n error if coverage fails to find the source instead of just printing a warning.\n Contributed by David Szotten in `PR#116 `_.\n* Fixed bug occurred when bare ``--cov`` parameter was used with xdist.\n Contributed by Michael Elovskikh in `PR#120 `_.\n* Add support for ``skip_covered`` and added ``--cov-report=term-skip-covered`` command\n line options. Contributed by Saurabh Kumar in `PR#115 `_.\n\n2.2.1 (2016-01-30)\n------------------\n\n* Fixed incorrect merging of coverage data when xdist was used and coverage was ``>= 4.0``.\n\n2.2.0 (2015-10-04)\n------------------\n\n* Added support for changing working directory in tests. Previously changing working\n directory would disable coverage measurements in suprocesses.\n* Fixed broken handling for ``--cov-report=annotate``.\n\n2.1.0 (2015-08-23)\n------------------\n\n* Added support for `coverage 4.0b2`.\n* Added the ``--cov-append`` command line options. Contributed by Christian Ledermann\n in `PR#80 `_.\n\n2.0.0 (2015-07-28)\n------------------\n\n* Added ``--cov-fail-under``, akin to the new ``fail_under`` option in `coverage-4.0`\n (automatically activated if there's a ``[report] fail_under = ...`` in ``.coveragerc``).\n* Changed ``--cov-report=term`` to automatically upgrade to ``--cov-report=term-missing``\n if there's ``[run] show_missing = True`` in ``.coveragerc``.\n* Changed ``--cov`` so it can be used with no path argument (in which case the source\n settings from ``.coveragerc`` will be used instead).\n* Fixed `.pth` installation to work in all cases (install, easy_install, wheels, develop etc).\n* Fixed `.pth` uninstallation to work for wheel installs.\n* Support for coverage 4.0.\n* Data file suffixing changed to use coverage's ``data_suffix=True`` option (instead of the\n custom suffixing).\n* Avoid warning about missing coverage data (just like ``coverage.control.process_startup``).\n* Fixed a race condition when running with xdist (all the workers tried to combine the files).\n It's possible that this issue is not present in `pytest-cov 1.8.X`.\n\n1.8.2 (2014-11-06)\n------------------\n\n* N/A\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pytest-dev/pytest-cov", "keywords": "cover,coverage,pytest,py.test,distributed,parallel", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pytest-cov", "package_url": "https://pypi.org/project/pytest-cov/", "platform": "", "project_url": "https://pypi.org/project/pytest-cov/", "project_urls": { "Homepage": "https://github.com/pytest-dev/pytest-cov" }, "release_url": "https://pypi.org/project/pytest-cov/2.8.1/", "requires_dist": [ "pytest (>=3.6)", "coverage (>=4.4)", "fields ; extra == 'testing'", "hunter ; extra == 'testing'", "process-tests (==2.0.2) ; extra == 'testing'", "six ; extra == 'testing'", "virtualenv ; extra == 'testing'" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "summary": "Pytest plugin for measuring coverage.", "version": "2.8.1" }, "last_serial": 5932238, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "6ef5fb2fa86e38303e73a42863f4a744", "sha256": "29889b828f23f6afe4e78dfb18e2f5f18d0415f509a07a4f2040f3a74074f429" }, "downloads": -1, "filename": "pytest-cov-0.10.tar.gz", "has_sig": false, "md5_digest": "6ef5fb2fa86e38303e73a42863f4a744", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9473, "upload_time": "2010-05-03T15:20:14", "url": "https://files.pythonhosted.org/packages/48/c5/b250c24c06f1374927291f71ecb19f9d8ad566e8a26b371f2b54655fdbd7/pytest-cov-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "cad5f6a53aa8baba5a5a50e297d28cd2", "sha256": "4634a3c6d56731564238946c956027ef024832a79a19f40da77446f4be6d867a" }, "downloads": -1, "filename": "pytest-cov-0.11.tar.gz", "has_sig": false, "md5_digest": "cad5f6a53aa8baba5a5a50e297d28cd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9474, "upload_time": "2010-05-06T12:11:49", "url": "https://files.pythonhosted.org/packages/3a/63/ace3785e47b84d65920190ce9ba1286a7069e843849d9203d4b31ea0a137/pytest-cov-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "e2b6dc0dc8fdd9fdec8f99632118e9cf", "sha256": "b665144794baffdcd8d2fb73d3bc607f63d66d5e11cbc722f8d85cd14101fa57" }, "downloads": -1, "filename": "pytest-cov-0.12.tar.gz", "has_sig": false, "md5_digest": "e2b6dc0dc8fdd9fdec8f99632118e9cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12158, "upload_time": "2010-05-13T13:07:36", "url": "https://files.pythonhosted.org/packages/42/03/503354b50aac1879d48dc0b3ba5342e72e9de0ed86f040c1d994c187e68a/pytest-cov-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "8c3673a0df8189ee7d0f7da92238ff09", "sha256": "98fe365d2653e08b985fc4f8d8ab8030cba72e398e18417f09f907d50950b117" }, "downloads": -1, "filename": "pytest-cov-0.13.tar.gz", "has_sig": false, "md5_digest": "8c3673a0df8189ee7d0f7da92238ff09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12161, "upload_time": "2010-05-25T11:23:52", "url": "https://files.pythonhosted.org/packages/c0/17/0b337ebbf0401a3a33e50ff29fbe266b9607649925b48c5aacfe003c3b72/pytest-cov-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "0ec2c99a70948d810ae49eedb2f0fd54", "sha256": "523a33154213d93914687c4990384f798dfbd8d024075e8fc57ef88b6042390d" }, "downloads": -1, "filename": "pytest-cov-0.14.tar.gz", "has_sig": false, "md5_digest": "0ec2c99a70948d810ae49eedb2f0fd54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12160, "upload_time": "2010-05-25T11:58:39", "url": "https://files.pythonhosted.org/packages/e3/70/634e5e311bee11d149064d380b86449458480330ab618d6fb820dbd92d6d/pytest-cov-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "1c09cb7d7e8f2042984911f7c19419c5", "sha256": "749894e5d098e74594c0c20c1a36657f33422be8d191f705045e345a1d301bcf" }, "downloads": -1, "filename": "pytest-cov-0.15.tar.gz", "has_sig": false, "md5_digest": "1c09cb7d7e8f2042984911f7c19419c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12166, "upload_time": "2010-07-05T14:28:26", "url": "https://files.pythonhosted.org/packages/bc/70/aefaaac0c4d3c9ded20f80c239cb63bb4bf7c8770083f97f051c7ec1ea89/pytest-cov-0.15.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "e7a947624308b6ddb015b2fce9807915", "sha256": "ab095420d1845bfb8998e6aa3072141da3b0c97a34475574752bbcf04edbac85" }, "downloads": -1, "filename": "pytest-cov-0.6.tar.gz", "has_sig": false, "md5_digest": "e7a947624308b6ddb015b2fce9807915", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6814, "upload_time": "2010-04-25T03:43:13", "url": "https://files.pythonhosted.org/packages/6d/cb/bd5502b6f180221f53222c37dabc887418f7604198dbc70688270fd8be6a/pytest-cov-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "51f7ffdfb37cd5a9a01edc9f319d9ed3", "sha256": "0accdc700864d1332c4cd63a5cd33075f863bf3a0ffce16d435db9bddee17dba" }, "downloads": -1, "filename": "pytest-cov-0.7.tar.gz", "has_sig": false, "md5_digest": "51f7ffdfb37cd5a9a01edc9f319d9ed3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9439, "upload_time": "2010-04-27T15:31:46", "url": "https://files.pythonhosted.org/packages/2d/7b/e92d51de9b74430ab319613ab3d2d8237c7c910b8c6c0f5cd7a0d5f2a595/pytest-cov-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "e168a6351863901940dc4a20fcb5351b", "sha256": "b4901e2529ef473967ecc6805672624462711e8bda25c2ba3cfba95bcf70073f" }, "downloads": -1, "filename": "pytest-cov-0.8.tar.gz", "has_sig": false, "md5_digest": "e168a6351863901940dc4a20fcb5351b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9437, "upload_time": "2010-04-29T10:28:05", "url": "https://files.pythonhosted.org/packages/95/a1/d89aa715ca6364bc7e2faf9eb388a5a24d8142724e2f2d9a4ec93f32e3a8/pytest-cov-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "373d3946c2757d59b80b98143fd0ea7c", "sha256": "2badd6bd51b7728f77743a9b1b9ed53ee534feea0938e36fd89b06153bbbf903" }, "downloads": -1, "filename": "pytest-cov-0.9.tar.gz", "has_sig": false, "md5_digest": "373d3946c2757d59b80b98143fd0ea7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9331, "upload_time": "2010-04-29T11:24:06", "url": "https://files.pythonhosted.org/packages/ac/69/85e0830fe4a3b449f827bfd477b2e618865899b3909a28def84ee72504d6/pytest-cov-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "c09f274a7bbd0d7fac220377e6bfd0db", "sha256": "fad340f861e04f2571e14cee5097e0600d36748dea51c581f63ece9585058d6a" }, "downloads": -1, "filename": "pytest-cov-1.0.tar.gz", "has_sig": false, "md5_digest": "c09f274a7bbd0d7fac220377e6bfd0db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6931, "upload_time": "2010-08-02T15:15:20", "url": "https://files.pythonhosted.org/packages/6d/66/f0de482fdb69af5d8e46c90692dc07697d5920beb7ef15863e247e3485b7/pytest-cov-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "28fb29184597f72cf3ca0e37009376f1", "sha256": "764575bf5cda11b7a0c665277f312969357a7c45cf889c43d8b800edcf76ce1a" }, "downloads": -1, "filename": "pytest-cov-1.1.tar.gz", "has_sig": false, "md5_digest": "28fb29184597f72cf3ca0e37009376f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6975, "upload_time": "2010-08-03T13:09:46", "url": "https://files.pythonhosted.org/packages/8a/3f/a827fb568b719f76a771b4dd1639ae74d8ab8763c317e306af76e9159f60/pytest-cov-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "95d22f6ff9c91017dda68c5663e89cdc", "sha256": "ada49dd73579b7b54dc76d869fa06462641a609c8b5716f478729083b54a3ed4" }, "downloads": -1, "filename": "pytest-cov-1.2.tar.gz", "has_sig": false, "md5_digest": "95d22f6ff9c91017dda68c5663e89cdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7084, "upload_time": "2010-08-08T09:50:47", "url": "https://files.pythonhosted.org/packages/b8/47/a039046f0af068a80641d48f6839b78ca45f065e1e9b4619737ba3277441/pytest-cov-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "7d157e2ad25189cd6f6a6da2cb3154f1", "sha256": "d0e8e5483a74b9f6142b65e879415a2183f73d1f0d5ae09ed33fbd8c9364775c" }, "downloads": -1, "filename": "pytest-cov-1.3.tar.gz", "has_sig": false, "md5_digest": "7d157e2ad25189cd6f6a6da2cb3154f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7062, "upload_time": "2010-09-23T14:08:17", "url": "https://files.pythonhosted.org/packages/7e/dc/3f2821dafe76278de85b2f938a703ca318fb29d4b2937dfb21cac0f9e909/pytest-cov-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "97b67dc6f5144278f251a5d12392b8ba", "sha256": "d0df0ba600837366a193d81d60cb60610d3ba46a7a6e2ffcdfd2c1d3eb33ae23" }, "downloads": -1, "filename": "pytest-cov-1.4.tar.gz", "has_sig": false, "md5_digest": "97b67dc6f5144278f251a5d12392b8ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7376, "upload_time": "2011-03-27T12:35:11", "url": "https://files.pythonhosted.org/packages/06/f1/75e9ca22e98341f7d7d4414b916605c1c0906649c8510a7a83999f075e22/pytest-cov-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "6930f866cf666987a9fbcc47433be735", "sha256": "ea0d4d0d589b17caa0d048768e85d1fdbcb6c4c0993a7a84f9bb7417002993fd" }, "downloads": -1, "filename": "pytest-cov-1.5.tar.gz", "has_sig": false, "md5_digest": "6930f866cf666987a9fbcc47433be735", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7452, "upload_time": "2011-07-25T12:26:32", "url": "https://files.pythonhosted.org/packages/04/be/460badca28f31e9f0ef0c81907c11383bb86aa004ebbf90403d28a6d992b/pytest-cov-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "6da54d74bde9d200de45068ba2ea637a", "sha256": "2e803c89f11e0344111670349f6ef401f831e85cbd287b0c5d61917da5aac454" }, "downloads": -1, "filename": "pytest-cov-1.6.tar.gz", "has_sig": false, "md5_digest": "6da54d74bde9d200de45068ba2ea637a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8257, "upload_time": "2012-05-12T02:03:21", "url": "https://files.pythonhosted.org/packages/44/c8/808b75d2e57bcfd10a32a186f0286524ec914d66426622ee1f92cb46d2dd/pytest-cov-1.6.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "c1432814f2e19ed86b563efa374b23a1", "sha256": "b49da3d45112bcd75019fbd7c12556b09e4cb54205278e6668f18d80f0d2ff69" }, "downloads": -1, "filename": "pytest-cov-1.7.0.tar.gz", "has_sig": false, "md5_digest": "c1432814f2e19ed86b563efa374b23a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8553, "upload_time": "2014-06-12T18:24:08", "url": "https://files.pythonhosted.org/packages/f2/0d/1dffbd4d8c8c485538aee9cc292c6f92db656dbf3468feb029791a401d43/pytest-cov-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "b9bfa95145c019a109987ab3835c7a97", "sha256": "bcb6a7e63f5fdba1aa510a2265fe8cc34d3b854358cf3c1881ef9293a63ad85f" }, "downloads": -1, "filename": "pytest-cov-1.8.0.tar.gz", "has_sig": false, "md5_digest": "b9bfa95145c019a109987ab3835c7a97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8623, "upload_time": "2014-08-22T20:32:46", "url": "https://files.pythonhosted.org/packages/4f/e5/a3945301fe3ddb98444f66b23745dc194f6bd481719f3c245e803d3d7cdf/pytest-cov-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "76c778afa2494088270348be42d759fc", "sha256": "31e5198c06f290e1e813d30ddd063a0401d9e3a698129ca44267781673a71285" }, "downloads": -1, "filename": "pytest-cov-1.8.1.tar.gz", "has_sig": false, "md5_digest": "76c778afa2494088270348be42d759fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8649, "upload_time": "2014-11-06T21:41:21", "url": "https://files.pythonhosted.org/packages/11/4b/b04646e97f1721878eb21e9f779102d84dd044d324382263b1770a3e4838/pytest-cov-1.8.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "bfcea61c2cda5b6e4fbb69a0a96a07a3", "sha256": "5f9d7b87bc88369cec0b5cd26fec3c9186ac146e2f29e3f54c67cbccd3175adf" }, "downloads": -1, "filename": "pytest_cov-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bfcea61c2cda5b6e4fbb69a0a96a07a3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15600, "upload_time": "2015-07-28T16:53:21", "url": "https://files.pythonhosted.org/packages/ca/1c/92bcfa16aa8aab8a60941ceed5b11b393e3a756a705b2bbbf6936a4282c5/pytest_cov-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6520aefe1e9d15fde08348e32d738b9", "sha256": "fd75a971d8ae7ba014b16dcb3b4b08a2ce3c51445f2da85450a44ef100af0406" }, "downloads": -1, "filename": "pytest-cov-2.0.0.tar.gz", "has_sig": false, "md5_digest": "c6520aefe1e9d15fde08348e32d738b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26589, "upload_time": "2015-07-28T16:53:18", "url": "https://files.pythonhosted.org/packages/17/e4/341f12a0154d0b71f95d6f1f54ea8f8b41fb4a57c8d0222e067da91a2f01/pytest-cov-2.0.0.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "9b44ebe7415dc055b8291c216c1e1935", "sha256": "bfeadcbb97b34be06c83bea58ed3119a7c1067214c18cfde0d24292aa9ca9248" }, "downloads": -1, "filename": "pytest_cov-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b44ebe7415dc055b8291c216c1e1935", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16457, "upload_time": "2015-08-23T14:49:34", "url": "https://files.pythonhosted.org/packages/f2/9b/03b7d51c74d8f7088e37043dcf4f59faed359c56e7d016e2627108072679/pytest_cov-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "98e94f5be88423f6251e7bad59fa6c06", "sha256": "6e86c3ae3be9930fa3f1402651819b00169fb5e963d29ed03d390d152a608506" }, "downloads": -1, "filename": "pytest-cov-2.1.0.tar.gz", "has_sig": false, "md5_digest": "98e94f5be88423f6251e7bad59fa6c06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25992, "upload_time": "2015-08-23T14:49:39", "url": "https://files.pythonhosted.org/packages/d9/4f/c035a0148e836ed351ec96dedd2ebb3f5745b459b32ebd861dde57ec9cca/pytest-cov-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "5ce45aea5cd0fd7c643bbf552a5c90d3", "sha256": "eec35bb0ef2a7dbe958f50b667403ab4abad53a17cc4f1a585b2aabac6f68088" }, "downloads": -1, "filename": "pytest_cov-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5ce45aea5cd0fd7c643bbf552a5c90d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16788, "upload_time": "2015-10-04T13:36:01", "url": "https://files.pythonhosted.org/packages/4c/b7/6351936a7015057f7f438937e091e719d629eab3304ede6eb987d4f572b9/pytest_cov-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "65a5238cdcfaa8618e6607c94faecbd6", "sha256": "2231d43f07760d6904dadceabca53ab16ef95ba58fff393861b64c0cab96c9d1" }, "downloads": -1, "filename": "pytest-cov-2.2.0.tar.gz", "has_sig": false, "md5_digest": "65a5238cdcfaa8618e6607c94faecbd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29965, "upload_time": "2015-10-04T13:36:12", "url": "https://files.pythonhosted.org/packages/b3/a7/1ab23377b03c7df0c1f70d7fe5b5dacac4a1a42913cbf39c93fa9482ee39/pytest-cov-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "2af8a88e5a3be38314989bde96d94e20", "sha256": "40bfd01002ceaf9e6c5d371d3c4d541d378a4214ea03e45f934980766a809384" }, "downloads": -1, "filename": "pytest_cov-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2af8a88e5a3be38314989bde96d94e20", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16637, "upload_time": "2016-01-30T09:04:41", "url": "https://files.pythonhosted.org/packages/b5/65/10686be887f9806e29506a99e9b561033db9e4aa185b1d750fef3ae43154/pytest_cov-2.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4c65c5561343e6c6a583d5fd29e6a63", "sha256": "a8b22e53e7f3b971454c35df99dffe21f4749f539491e935c55d3ff7e1b284fa" }, "downloads": -1, "filename": "pytest-cov-2.2.1.tar.gz", "has_sig": false, "md5_digest": "d4c65c5561343e6c6a583d5fd29e6a63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33154, "upload_time": "2016-01-30T09:04:47", "url": "https://files.pythonhosted.org/packages/39/07/bdd2d985ae7ac726cc5e7a6a343b585570bf1f9f7cb297a9cd58a60c7c89/pytest-cov-2.2.1.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "c02c77d1002e7cdba5bafa0fcba9eb87", "sha256": "08c058262992e7f6fc22d2e078afd762781f93b03d69b682ddfea9f8fb002f86" }, "downloads": -1, "filename": "pytest_cov-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c02c77d1002e7cdba5bafa0fcba9eb87", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18821, "upload_time": "2016-07-05T19:55:15", "url": "https://files.pythonhosted.org/packages/da/c3/f67fdcdac4644cbdea172248a1fc9f326ce43d3352a6b3320cb437738cf6/pytest_cov-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c9accfbc13c44ac7624ff06c0a444101", "sha256": "b079fa99d4dd4820ac31fe1863df4053eaff787f65dd04024bd57c2666c35ad4" }, "downloads": -1, "filename": "pytest-cov-2.3.0.tar.gz", "has_sig": false, "md5_digest": "c9accfbc13c44ac7624ff06c0a444101", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36807, "upload_time": "2016-07-05T19:55:20", "url": "https://files.pythonhosted.org/packages/6b/58/14b1ddcfd926199ff1468496bc0268bd37f81d949dcad414ce662538c72d/pytest-cov-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "b04cdcfc05bd3c9d597853beb7aaa4ac", "sha256": "09f34ed04d5ea1a6dc7e5bc08435eaca9a2b55086c50f5cc0a3229b4001bc5f0" }, "downloads": -1, "filename": "pytest_cov-2.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b04cdcfc05bd3c9d597853beb7aaa4ac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19111, "upload_time": "2016-08-07T20:10:49", "url": "https://files.pythonhosted.org/packages/67/94/93dd3288f9a6accfc25e4c636aa912824a2e66d08a464d6f62421da8742f/pytest_cov-2.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8e7475454313a035d08f387ee6d725cb", "sha256": "fa0a212283cdf52e2eecc24dd6459bb7687cc29adb60cb84258fab73be8dda0f" }, "downloads": -1, "filename": "pytest-cov-2.3.1.tar.gz", "has_sig": false, "md5_digest": "8e7475454313a035d08f387ee6d725cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35378, "upload_time": "2016-08-07T20:10:53", "url": "https://files.pythonhosted.org/packages/4c/2f/de9e8f226d4fb86f330ee2fcc709204fbd3aeab6ce17756b3cf5ea9aa4d7/pytest-cov-2.3.1.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "46b38803d805450b8ea55a8cc3b0ea88", "sha256": "10e37e876f49ddec80d6c83a54b657157f1387ebc0f7755285f8c156130014a1" }, "downloads": -1, "filename": "pytest_cov-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "46b38803d805450b8ea55a8cc3b0ea88", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20287, "upload_time": "2016-10-10T19:32:03", "url": "https://files.pythonhosted.org/packages/85/e6/f041bcf77bcf7bf11ccb9b8a6cdb3a2ee70c1bd2ab49d87d2269cfd4f3e0/pytest_cov-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2fda09677d232acc99ec1b3c5831e33f", "sha256": "53d4179086e1eec1c688705977387432c01031b0a7bd91b8ff6c912c08c3820d" }, "downloads": -1, "filename": "pytest-cov-2.4.0.tar.gz", "has_sig": false, "md5_digest": "2fda09677d232acc99ec1b3c5831e33f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37071, "upload_time": "2016-10-10T19:32:06", "url": "https://files.pythonhosted.org/packages/00/c0/2bfd1fcdb9d407b8ac8185b1cb5ff458105c6b207a9a7f0e13032de9828f/pytest-cov-2.4.0.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "e44d1b3ab2edbe25e0d35fed26cbf35e", "sha256": "267864bcab5fd16ec8655a0c74194ddaaa879a116d3e1c9d1e0cda0ec849a459" }, "downloads": -1, "filename": "pytest_cov-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e44d1b3ab2edbe25e0d35fed26cbf35e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21028, "upload_time": "2017-05-09T20:19:17", "url": "https://files.pythonhosted.org/packages/35/02/fb4e0f9b0423f26214eea9fd07f9fa0758ecf2bea0b8d8e61667a91e6298/pytest_cov-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "100c99d9f0684aa1860237bb625e1a43", "sha256": "f191bf605b0d044c18fcba89fd624135c701600546ac50e51a82fd725e51409d" }, "downloads": -1, "filename": "pytest-cov-2.5.0.tar.gz", "has_sig": false, "md5_digest": "100c99d9f0684aa1860237bb625e1a43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35921, "upload_time": "2017-05-09T20:19:20", "url": "https://files.pythonhosted.org/packages/56/a6/73d529c614ca53a1c05a3c79f412aa376714e3a619c0af459b05dd359d31/pytest-cov-2.5.0.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "c909b7588c6c6f447d76d6fa1ba2129c", "sha256": "890fe5565400902b0c78b5357004aab1c814115894f4f21370e2433256a3eeec" }, "downloads": -1, "filename": "pytest_cov-2.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c909b7588c6c6f447d76d6fa1ba2129c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21222, "upload_time": "2017-05-11T22:07:23", "url": "https://files.pythonhosted.org/packages/30/7d/7f6a78ae44a1248ee28cc777586c18b28a1df903470e5d34a6e25712b8aa/pytest_cov-2.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5acf38d4909e19819eb5c1754fbfc0ac", "sha256": "03aa752cf11db41d281ea1d807d954c4eda35cfa1b21d6971966cc041bbf6e2d" }, "downloads": -1, "filename": "pytest-cov-2.5.1.tar.gz", "has_sig": false, "md5_digest": "5acf38d4909e19819eb5c1754fbfc0ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36201, "upload_time": "2017-05-11T22:07:26", "url": "https://files.pythonhosted.org/packages/24/b4/7290d65b2f3633db51393bdf8ae66309b37620bc3ec116c5e357e3e37238/pytest-cov-2.5.1.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "bc5dac7af3ea263ea5896cbb269cd198", "sha256": "513c425e931a0344944f84ea47f3956be0e416d95acbd897a44970c8d926d5d7" }, "downloads": -1, "filename": "pytest_cov-2.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc5dac7af3ea263ea5896cbb269cd198", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 14334, "upload_time": "2018-09-03T23:20:57", "url": "https://files.pythonhosted.org/packages/30/0a/1b009b525526cd3cd9f52f52391b426c5a3597447be811a10bcb1f6b05eb/pytest_cov-2.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c8c1bf2a5c355a4c3ad9aafe4a1894d", "sha256": "e360f048b7dae3f2f2a9a4d067b2dd6b6a015d384d1577c994a43f3f7cbad762" }, "downloads": -1, "filename": "pytest-cov-2.6.0.tar.gz", "has_sig": false, "md5_digest": "7c8c1bf2a5c355a4c3ad9aafe4a1894d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 33026, "upload_time": "2018-09-03T23:20:59", "url": "https://files.pythonhosted.org/packages/d9/e2/58f90a316fbd94dd50bf5c826a23f3f5d079fb3cc448c1e9f0e3c33a3d2a/pytest-cov-2.6.0.tar.gz" } ], "2.6.1": [ { "comment_text": "", "digests": { "md5": "241e8f1f9b7a923bf60ae7c62d132ec0", "sha256": "230ef817450ab0699c6cc3c9c8f7a829c34674456f2ed8df1fe1d39780f7c87f" }, "downloads": -1, "filename": "pytest_cov-2.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "241e8f1f9b7a923bf60ae7c62d132ec0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 16278, "upload_time": "2019-01-07T00:56:05", "url": "https://files.pythonhosted.org/packages/7d/b5/92f32674ab954f80499ac73347bfeb815545ea295439c12b0ef3ac8f0975/pytest_cov-2.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f3e1bd20c8f7fa188cc5c3b63611d27a", "sha256": "0ab664b25c6aa9716cbf203b17ddb301932383046082c081b9848a0edf5add33" }, "downloads": -1, "filename": "pytest-cov-2.6.1.tar.gz", "has_sig": false, "md5_digest": "f3e1bd20c8f7fa188cc5c3b63611d27a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 35307, "upload_time": "2019-01-07T00:56:07", "url": "https://files.pythonhosted.org/packages/54/16/4229c5514d12b25c3555ca775c7c3cade9a63da99b52fd5fc45962fa3d29/pytest-cov-2.6.1.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "27e38d931f899918d32f2a3e2dcdbff3", "sha256": "5da56dbd7e2af6cddc2f8d97c2f9e269b1c337a3b5259038499408c6459fa1fe" }, "downloads": -1, "filename": "pytest_cov-2.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "27e38d931f899918d32f2a3e2dcdbff3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 17078, "upload_time": "2019-05-03T08:23:35", "url": "https://files.pythonhosted.org/packages/5f/07/b7b567b5e4ddb13b9ce8c8446d7babbff6cf422850dcf4e9afb776a2ca6a/pytest_cov-2.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87339dce04a21de1a0ad3152963af3a3", "sha256": "e8639a11c9540b03ffd2df5a121cf71cf0f97771f7047c0e82591f48c40c2eeb" }, "downloads": -1, "filename": "pytest-cov-2.7.0.tar.gz", "has_sig": false, "md5_digest": "87339dce04a21de1a0ad3152963af3a3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 1831231, "upload_time": "2019-05-03T08:23:38", "url": "https://files.pythonhosted.org/packages/9d/ba/521829b86fee3ca99be541ff23cf8a38340ab10c5c05df30c601c6ef7c44/pytest-cov-2.7.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "9c3adf39cf0b0516d721f2764511c159", "sha256": "2b097cde81a302e1047331b48cadacf23577e431b61e9c6f49a1170bbe3d3da6" }, "downloads": -1, "filename": "pytest_cov-2.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9c3adf39cf0b0516d721f2764511c159", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 17121, "upload_time": "2019-05-03T08:27:07", "url": "https://files.pythonhosted.org/packages/84/7b/73f8522619d1cbb22b9a36f9c54bc5ce5e24648e53cc1bf566477d2d1f2b/pytest_cov-2.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "053bc1570960cbc41810cf00997e3995", "sha256": "e00ea4fdde970725482f1f35630d12f074e121a23801aabf2ae154ec6bdd343a" }, "downloads": -1, "filename": "pytest-cov-2.7.1.tar.gz", "has_sig": false, "md5_digest": "053bc1570960cbc41810cf00997e3995", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 42121, "upload_time": "2019-05-03T08:27:09", "url": "https://files.pythonhosted.org/packages/bb/0f/3db7ff86801883b21d5353b258c994b1b8e2abbc804e2273b8d0fd19004b/pytest-cov-2.7.1.tar.gz" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "6f0fbcc1245518b9b129aa90727452fb", "sha256": "a42cb9af7a429b6cd7c97be307cbb4cefca1d50c5b3018711558341979946851" }, "downloads": -1, "filename": "pytest_cov-2.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6f0fbcc1245518b9b129aa90727452fb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 18583, "upload_time": "2019-10-04T15:02:01", "url": "https://files.pythonhosted.org/packages/45/d7/1d0c77172b033301558fac9a82def90d75cbb4bb99d9095532d492af1b89/pytest_cov-2.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c97e3d5fc31afb88332c2104f0dadca5", "sha256": "9b64b54d21bd0fd77f7eb6ccb38638b8daba8d98ab5a51d67c93a133ec8c5ba4" }, "downloads": -1, "filename": "pytest-cov-2.8.0.tar.gz", "has_sig": false, "md5_digest": "c97e3d5fc31afb88332c2104f0dadca5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 47520, "upload_time": "2019-10-04T15:02:03", "url": "https://files.pythonhosted.org/packages/75/46/9a671e204709b01ed3067ea3f073513c73798c4a689fd0b5343c1df06d37/pytest-cov-2.8.0.tar.gz" } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "a378268a558bed3202794accc7708fcb", "sha256": "cdbdef4f870408ebdbfeb44e63e07eb18bb4619fae852f6e760645fa36172626" }, "downloads": -1, "filename": "pytest_cov-2.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a378268a558bed3202794accc7708fcb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 18651, "upload_time": "2019-10-05T15:02:28", "url": "https://files.pythonhosted.org/packages/b9/54/3673ee8be482f81527678ac894276223b9814bb7262e4f730469bb7bf70e/pytest_cov-2.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8af2a54e5b17a3981ba52389c2b88020", "sha256": "cc6742d8bac45070217169f5f72ceee1e0e55b0221f54bcf24845972d3a47f2b" }, "downloads": -1, "filename": "pytest-cov-2.8.1.tar.gz", "has_sig": false, "md5_digest": "8af2a54e5b17a3981ba52389c2b88020", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 47661, "upload_time": "2019-10-05T15:02:30", "url": "https://files.pythonhosted.org/packages/13/8a/51f54b43a043c799bceca846594b9a310823a3e52df5ec27109cccba90f4/pytest-cov-2.8.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a378268a558bed3202794accc7708fcb", "sha256": "cdbdef4f870408ebdbfeb44e63e07eb18bb4619fae852f6e760645fa36172626" }, "downloads": -1, "filename": "pytest_cov-2.8.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a378268a558bed3202794accc7708fcb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 18651, "upload_time": "2019-10-05T15:02:28", "url": "https://files.pythonhosted.org/packages/b9/54/3673ee8be482f81527678ac894276223b9814bb7262e4f730469bb7bf70e/pytest_cov-2.8.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8af2a54e5b17a3981ba52389c2b88020", "sha256": "cc6742d8bac45070217169f5f72ceee1e0e55b0221f54bcf24845972d3a47f2b" }, "downloads": -1, "filename": "pytest-cov-2.8.1.tar.gz", "has_sig": false, "md5_digest": "8af2a54e5b17a3981ba52389c2b88020", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", "size": 47661, "upload_time": "2019-10-05T15:02:30", "url": "https://files.pythonhosted.org/packages/13/8a/51f54b43a043c799bceca846594b9a310823a3e52df5ec27109cccba90f4/pytest-cov-2.8.1.tar.gz" } ] }