svn commit: r505335 - in head/devel: . py-pytest-rerunfailures
Steve Wills
swills at FreeBSD.org
Sat Jun 29 09:27:26 UTC 2019
Author: swills
Date: Sat Jun 29 09:27:24 2019
New Revision: 505335
URL: https://svnweb.freebsd.org/changeset/ports/505335
Log:
devel/py-pytest-rerunfailures: create port
py.test plugin that re-runs failed tests up to -n times to eliminate
flakey failures
WWW: https://github.com/pytest-dev/pytest-rerunfailures
Added:
head/devel/py-pytest-rerunfailures/
head/devel/py-pytest-rerunfailures/Makefile (contents, props changed)
head/devel/py-pytest-rerunfailures/distinfo (contents, props changed)
head/devel/py-pytest-rerunfailures/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile (contents, props changed)
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Jun 29 09:26:38 2019 (r505334)
+++ head/devel/Makefile Sat Jun 29 09:27:24 2019 (r505335)
@@ -4842,6 +4842,7 @@
SUBDIR += py-pytest-mock
SUBDIR += py-pytest-pycodestyle
SUBDIR += py-pytest-relaxed
+ SUBDIR += py-pytest-rerunfailures
SUBDIR += py-pytest-runner
SUBDIR += py-pytest-sugar
SUBDIR += py-pytest-timeout
Added: head/devel/py-pytest-rerunfailures/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-pytest-rerunfailures/Makefile Sat Jun 29 09:27:24 2019 (r505335)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME= pytest-rerunfailures
+PORTVERSION= 6.0
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= swills at FreeBSD.org
+COMMENT= Re-run tests to eliminate flaky failures
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3.8:devel/py-pytest@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-pytest-rerunfailures/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-pytest-rerunfailures/distinfo Sat Jun 29 09:27:24 2019 (r505335)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1560856460
+SHA256 (pytest-rerunfailures-6.0.tar.gz) = 978349ae00687504fd0f9d0970c37199ccd89cbdb0cb8c4ed7ee417ede582b40
+SIZE (pytest-rerunfailures-6.0.tar.gz) = 12278
Added: head/devel/py-pytest-rerunfailures/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-pytest-rerunfailures/pkg-descr Sat Jun 29 09:27:24 2019 (r505335)
@@ -0,0 +1,4 @@
+a py.test plugin that re-runs failed tests up to -n times to eliminate flakey
+failures
+
+WWW: https://github.com/pytest-dev/pytest-rerunfailures
More information about the svn-ports-head
mailing list