svn commit: r558475 - in head/devel: . py-pytest-regressions

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Dec 19 20:04:10 UTC 2020


Author: sunpoet
Date: Sat Dec 19 20:04:07 2020
New Revision: 558475
URL: https://svnweb.freebsd.org/changeset/ports/558475

Log:
  Add py-pytest-regressions 2.1.1
  
  pytest-regressions makes it simple to test general data, images, files, and
  numeric tables by saving expected data in a data directory (courtesy of
  pytest-datadir) that can be used to verify that future runs produce the same
  data.
  
  WWW: https://github.com/ESSS/pytest-regressions

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Dec 19 20:04:01 2020	(r558474)
+++ head/devel/Makefile	Sat Dec 19 20:04:07 2020	(r558475)
@@ -4916,6 +4916,7 @@
     SUBDIR += py-pytest-pep8
     SUBDIR += py-pytest-pycodestyle
     SUBDIR += py-pytest-randomly
+    SUBDIR += py-pytest-regressions
     SUBDIR += py-pytest-relaxed
     SUBDIR += py-pytest-rerunfailures
     SUBDIR += py-pytest-runner

Added: head/devel/py-pytest-regressions/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytest-regressions/Makefile	Sat Dec 19 20:04:07 2020	(r558475)
@@ -0,0 +1,26 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pytest-regressions
+PORTVERSION=	2.1.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Easy to use fixtures to write regression tests
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pytest-datadir>=1.2.0:devel/py-pytest-datadir@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pytest>=3.5.0:devel/py-pytest@${PY_FLAVOR}
+
+USES=		python:3.6+
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-pytest-regressions/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytest-regressions/distinfo	Sat Dec 19 20:04:07 2020	(r558475)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1608366072
+SHA256 (pytest-regressions-2.1.1.tar.gz) = a1580fe4011c70106070c2ede7ada972a4b814cca90d49459f3841bf81c2a39d
+SIZE (pytest-regressions-2.1.1.tar.gz) = 97596

Added: head/devel/py-pytest-regressions/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pytest-regressions/pkg-descr	Sat Dec 19 20:04:07 2020	(r558475)
@@ -0,0 +1,6 @@
+pytest-regressions makes it simple to test general data, images, files, and
+numeric tables by saving expected data in a data directory (courtesy of
+pytest-datadir) that can be used to verify that future runs produce the same
+data.
+
+WWW: https://github.com/ESSS/pytest-regressions


More information about the svn-ports-all mailing list