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
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-12-19 20:04:07 +00:00
parent 2dc879fcd2
commit a4e11a3a6b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=558475
4 changed files with 36 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,26 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= pytest-regressions
PORTVERSION= 2.1.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1608366072
SHA256 (pytest-regressions-2.1.1.tar.gz) = a1580fe4011c70106070c2ede7ada972a4b814cca90d49459f3841bf81c2a39d
SIZE (pytest-regressions-2.1.1.tar.gz) = 97596

View File

@ -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