Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Mar 2020 01:45:44 +0000 (UTC)
From:      Muhammad Moinur Rahman <bofh@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529020 - in head/devel: . py-pytest-verbose-parametrize
Message-ID:  <202003240145.02O1ji42010067@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bofh
Date: Tue Mar 24 01:45:44 2020
New Revision: 529020
URL: https://svnweb.freebsd.org/changeset/ports/529020

Log:
  [NEW] devel/py-pytest-verbose-parametrize: Parametrize hook to generate ids for parametrized tests
  
  Pytest parametrize hook to generate ids for parametrized tests that are a little
  more descriptive than the default (which just outputs id numbers).
  
  WWW: https://github.com/manahl/pytest-plugins/tree/master/pytest-verbose-parametrize

Added:
  head/devel/py-pytest-verbose-parametrize/
  head/devel/py-pytest-verbose-parametrize/Makefile   (contents, props changed)
  head/devel/py-pytest-verbose-parametrize/distinfo   (contents, props changed)
  head/devel/py-pytest-verbose-parametrize/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Mar 24 01:33:44 2020	(r529019)
+++ head/devel/Makefile	Tue Mar 24 01:45:44 2020	(r529020)
@@ -4857,6 +4857,7 @@
     SUBDIR += py-pytest-isort
     SUBDIR += py-pytest-localserver
     SUBDIR += py-pytest-mock
+    SUBDIR += py-pytest-verbose-parametrize
     SUBDIR += py-pytest-pep8
     SUBDIR += py-pytest-pycodestyle
     SUBDIR += py-pytest-relaxed

Added: head/devel/py-pytest-verbose-parametrize/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytest-verbose-parametrize/Makefile	Tue Mar 24 01:45:44 2020	(r529020)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	pytest-verbose-parametrize
+PORTVERSION=	1.7.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	bofh@FreeBSD.org
+COMMENT=	Parametrize hook to generate ids for parametrized tests
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools-git>=0:devel/py-setuptools-git@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=4.4.0:devel/py-pytest@${PY_FLAVOR}
+
+USES=		python:-3.7
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+do-test:
+	@(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs)
+
+.include <bsd.port.mk>

Added: head/devel/py-pytest-verbose-parametrize/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytest-verbose-parametrize/distinfo	Tue Mar 24 01:45:44 2020	(r529020)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585011375
+SHA256 (pytest-verbose-parametrize-1.7.0.tar.gz) = b85b374a5747607a8e9ffca9732e152859b8e7115bcb10f25c31c60d403146e8
+SIZE (pytest-verbose-parametrize-1.7.0.tar.gz) = 12301

Added: head/devel/py-pytest-verbose-parametrize/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytest-verbose-parametrize/pkg-descr	Tue Mar 24 01:45:44 2020	(r529020)
@@ -0,0 +1,4 @@
+Pytest parametrize hook to generate ids for parametrized tests that are a little
+more descriptive than the default (which just outputs id numbers).
+
+WWW: https://github.com/manahl/pytest-plugins/tree/master/pytest-verbose-parametrize



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003240145.02O1ji42010067>