16825e2c94
2.11.1 (2021-01-20) ------------------- * Fixed support for newer setuptools (v42+). 2.11.0 (2021-01-18) ------------------- * Bumped minimum coverage requirement to 5.2.1. This prevents reporting issues. * Improved sample projects (from the `examples <https://github.com/pytest-dev/pytest-cov/tree/master/examples>`_ directory) to support running `tox -e pyXY`. Now the example configures a suffixed coverage data file, and that makes the cleanup environment unnecessary. * Removed the empty `console_scripts` entrypoint that confused some Gentoo build script. I didn't ask why it was so broken cause I didn't want to ruin my day. * Fixed the missing `coverage context <https://coverage.readthedocs.io/en/stable/contexts.html>`_ when using subprocesses. * Updated the config section in the docs. * Migrated CI to travis-ci.com (from .org).
21 lines
600 B
Makefile
21 lines
600 B
Makefile
# $NetBSD: Makefile,v 1.16 2021/01/21 15:39:14 adam Exp $
|
|
|
|
DISTNAME= pytest-cov-2.11.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-cov/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/pytest-dev/pytest-cov
|
|
COMMENT= Pytest plugin for measuring coverage
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-coverage>=5.2.1:../../devel/py-coverage
|
|
|
|
PYTHON_VERSIONED_DEPENDENCIES= test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/versioned_dependencies.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|