Index: head/devel/Makefile =================================================================== --- head/devel/Makefile +++ head/devel/Makefile @@ -4090,6 +4090,7 @@ SUBDIR += py-pyshapelib SUBDIR += py-pytemplate SUBDIR += py-pytest + SUBDIR += py-pytest-cache SUBDIR += py-pytest-capturelog SUBDIR += py-pytest-runner SUBDIR += py-pytest-timeout Index: head/devel/py-pytest-cache/Makefile =================================================================== --- head/devel/py-pytest-cache/Makefile +++ head/devel/py-pytest-cache/Makefile @@ -0,0 +1,31 @@ +# Created by: loader +# $FreeBSD$ + +PORTNAME= pytest-cache +PORTVERSION= 1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= loader@FreeBSD.org +COMMENT= Pytest plugin with mechanisms for caching across test runs + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.2:${PORTSDIR}/devel/py-pytest \ + ${PYTHON_PKGNAMEPREFIX}execnet>=1.2:${PORTSDIR}/sysutils/py-execnet +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:${PORTSDIR}/devel/py-pytest + +OPTIONS_DEFINE= TESTS + +TESTS_DESC= Install test suite requirements +TESTS_BUILD_DEPENDS= ${TEST_DEPENDS} + +USES= python +USE_PYTHON= autoplist distutils + +regression-test: build + @cd ${WRKSRC} && py.test + +.include Index: head/devel/py-pytest-cache/distinfo =================================================================== --- head/devel/py-pytest-cache/distinfo +++ head/devel/py-pytest-cache/distinfo @@ -0,0 +1,2 @@ +SHA256 (pytest-cache-1.0.tar.gz) = be7468edd4d3d83f1e844959fd6e3fd28e77a481440a7118d430130ea31b07a9 +SIZE (pytest-cache-1.0.tar.gz) = 16242 Index: head/devel/py-pytest-cache/pkg-descr =================================================================== --- head/devel/py-pytest-cache/pkg-descr +++ head/devel/py-pytest-cache/pkg-descr @@ -0,0 +1,3 @@ +pytest plugin with mechanisms for caching across test runs. + +WWW: https://bitbucket.org/hpk42/pytest-cache/