pkgsrc/devel/py-test5/Makefile
adam 6d13e0037b py-test5: updated to 5.3.2
pytest 5.3.2:

Improvements
* Revert “A warning is now issued when assertions are made for None”.

The warning proved to be less useful than initially expected and had quite a few false positive cases.

Bug Fixes
* junitxml: Logs for failed test are now passed to junit report in case the test fails during call phase.
* The supporting files in the .pytest_cache directory are kept with --cache-clear, which only clears cached values now.
* Fix assertion rewriting for egg-based distributions and editable installs (pip install --editable).
2019-12-15 11:30:37 +00:00

47 lines
1.7 KiB
Makefile

# $NetBSD: Makefile,v 1.8 2019/12/15 11:30:37 adam Exp $
DISTNAME= pytest-5.3.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://pytest.org/
COMMENT= Python testing tool
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-attrs>=17.4.0:../../devel/py-attrs
DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
DEPENDS+= ${PYPKGPREFIX}-more-itertools>=4.0.0:../../devel/py-more-itertools
DEPENDS+= ${PYPKGPREFIX}-packaging-[0-9]*:../../devel/py-packaging
DEPENDS+= ${PYPKGPREFIX}-pluggy>=0.12:../../devel/py-pluggy
DEPENDS+= ${PYPKGPREFIX}-py>=1.5.0:../../devel/py-py
DEPENDS+= ${PYPKGPREFIX}-wcwidth-[0-9]*:../../devel/py-wcwidth
BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
TEST_DEPENDS+= ${PYPKGPREFIX}-argcomplete-[0-9]*:../../devel/py-argcomplete
TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=3.56:../../devel/py-hypothesis
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
TEST_DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests
TEST_DEPENDS+= ${PYPKGPREFIX}-xmlschema-[0-9]*:../../textproc/py-xmlschema
PYTHON_VERSIONS_INCOMPATIBLE= 27 # since 5.0.0
.include "../../lang/python/pyversion.mk"
.if ${_PYTHON_VERSION} < 38
DEPENDS+= ${PYPKGPREFIX}-importlib-metadata>=0.12:../../devel/py-importlib-metadata
.endif
USE_LANGUAGES= # none
USE_TOOLS+= bash:build
post-install:
cd ${DESTDIR}${PREFIX}/bin && \
${MV} py.test py.test-${PYVERSSUFFIX} && \
${MV} pytest pytest-${PYVERSSUFFIX} || ${TRUE}
do-test:
cd ${WRKSRC}/testing && pytest-${PYVERSSUFFIX}
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"