Date: Sun, 5 Jul 2015 17:17:12 +0000 (UTC) From: Fukang Chen <loader@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r391367 - in head/devel: . py-pytest-cache Message-ID: <201507051717.t65HHC8e048089@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: loader (doc committer) Date: Sun Jul 5 17:17:11 2015 New Revision: 391367 URL: https://svnweb.freebsd.org/changeset/ports/391367 Log: [NEW] devel/py-pytest-cache: Pytest plugin with mechanisms for caching across test runs pytest plugin with mechanisms for caching across test runs. WWW: https://bitbucket.org/hpk42/pytest-cache/ PR: 199774 Approved by: koobs Differential Revision: https://reviews.freebsd.org/D2996 Added: head/devel/py-pytest-cache/ head/devel/py-pytest-cache/Makefile (contents, props changed) head/devel/py-pytest-cache/distinfo (contents, props changed) head/devel/py-pytest-cache/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 5 16:41:37 2015 (r391366) +++ head/devel/Makefile Sun Jul 5 17:17:11 2015 (r391367) @@ -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 Added: head/devel/py-pytest-cache/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-cache/Makefile Sun Jul 5 17:17:11 2015 (r391367) @@ -0,0 +1,31 @@ +# Created by: loader <loader@FreeBSD.org> +# $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 <bsd.port.mk> Added: head/devel/py-pytest-cache/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-cache/distinfo Sun Jul 5 17:17:11 2015 (r391367) @@ -0,0 +1,2 @@ +SHA256 (pytest-cache-1.0.tar.gz) = be7468edd4d3d83f1e844959fd6e3fd28e77a481440a7118d430130ea31b07a9 +SIZE (pytest-cache-1.0.tar.gz) = 16242 Added: head/devel/py-pytest-cache/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-cache/pkg-descr Sun Jul 5 17:17:11 2015 (r391367) @@ -0,0 +1,3 @@ +pytest plugin with mechanisms for caching across test runs. + +WWW: https://bitbucket.org/hpk42/pytest-cache/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507051717.t65HHC8e048089>