8e60bb4dca
v1.3.0 * Add support for pytest 6 * Replace `@pytest.mark.tryfirst` with newer `@pytest.hookimpl` * Invoke `pytest_runtest_logstart` and `pytest_runtest_logfinish` hooks in `runtest_protocol` v1.2.0 * Add limited support for xfail marker * Fix support for pytest 5.4.0+ * Drop support for Python 3.4 as it is EOL
24 lines
688 B
Makefile
24 lines
688 B
Makefile
# $NetBSD: Makefile,v 1.7 2020/10/23 12:15:55 adam Exp $
|
|
|
|
DISTNAME= pytest-forked-1.3.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-forked/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/pytest-dev/pytest-forked
|
|
COMMENT= Run tests in isolated forked subprocesses
|
|
LICENSE= mit
|
|
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
|
|
|
|
PYTHON_VERSIONED_DEPENDENCIES= test
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && pytest-${PYVERSSUFFIX} testing
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../lang/python/versioned_dependencies.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|