pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel Flaky is a plugin for nose or py.test that autom...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/387308f15b4f
branches:  trunk
changeset: 365570:387308f15b4f
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Jul 20 16:44:13 2017 +0000

description:
Flaky is a plugin for nose or py.test that automatically reruns flaky tests.

Ideally, tests reliably pass or fail, but sometimes test fixtures must rely on
components that aren?t 100% reliable. With flaky, instead of removing those
tests or marking them to @skip, they can be automatically retried.

diffstat:

 devel/Makefile          |   3 ++-
 devel/py-flaky/DESCR    |   5 +++++
 devel/py-flaky/Makefile |  18 ++++++++++++++++++
 devel/py-flaky/PLIST    |  34 ++++++++++++++++++++++++++++++++++
 devel/py-flaky/distinfo |   6 ++++++
 5 files changed, 65 insertions(+), 1 deletions(-)

diffs (96 lines):

diff -r a8fa1dd458f2 -r 387308f15b4f devel/Makefile
--- a/devel/Makefile    Thu Jul 20 16:41:10 2017 +0000
+++ b/devel/Makefile    Thu Jul 20 16:44:13 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2468 2017/07/19 12:30:47 jaapb Exp $
+# $NetBSD: Makefile,v 1.2469 2017/07/20 16:44:13 adam Exp $
 #
 
 COMMENT=       Development utilities
@@ -1852,6 +1852,7 @@
 SUBDIR+=       py-flake8-import-order
 SUBDIR+=       py-flake8-polyfill
 SUBDIR+=       py-flakes
+SUBDIR+=       py-flaky
 SUBDIR+=       py-flexmock
 SUBDIR+=       py-flufl.i18n
 SUBDIR+=       py-flufl.lock
diff -r a8fa1dd458f2 -r 387308f15b4f devel/py-flaky/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-flaky/DESCR      Thu Jul 20 16:44:13 2017 +0000
@@ -0,0 +1,5 @@
+Flaky is a plugin for nose or py.test that automatically reruns flaky tests.
+
+Ideally, tests reliably pass or fail, but sometimes test fixtures must rely on
+components that arenâ??t 100% reliable. With flaky, instead of removing those
+tests or marking them to @skip, they can be automatically retried.
diff -r a8fa1dd458f2 -r 387308f15b4f devel/py-flaky/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-flaky/Makefile   Thu Jul 20 16:44:13 2017 +0000
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1 2017/07/20 16:44:13 adam Exp $
+
+DISTNAME=      flaky-3.4.0
+PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
+CATEGORIES=    devel python
+MASTER_SITES=  ${MASTER_SITE_PYPI:=f/flaky/}
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/box/flaky
+COMMENT=       Plugin for nose or py.test that automatically reruns flaky tests
+LICENSE=       apache-2.0
+
+#BUILD_DEPENDS+=       ${PYPKGPREFIX}-tox-[0-9]*:../../devel/py-tox
+
+USE_LANGUAGES=         # none
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r a8fa1dd458f2 -r 387308f15b4f devel/py-flaky/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-flaky/PLIST      Thu Jul 20 16:44:13 2017 +0000
@@ -0,0 +1,34 @@
+@comment $NetBSD: PLIST,v 1.1 2017/07/20 16:44:13 adam Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/flaky/__init__.py
+${PYSITELIB}/flaky/__init__.pyc
+${PYSITELIB}/flaky/__init__.pyo
+${PYSITELIB}/flaky/_flaky_plugin.py
+${PYSITELIB}/flaky/_flaky_plugin.pyc
+${PYSITELIB}/flaky/_flaky_plugin.pyo
+${PYSITELIB}/flaky/defaults.py
+${PYSITELIB}/flaky/defaults.pyc
+${PYSITELIB}/flaky/defaults.pyo
+${PYSITELIB}/flaky/flaky_decorator.py
+${PYSITELIB}/flaky/flaky_decorator.pyc
+${PYSITELIB}/flaky/flaky_decorator.pyo
+${PYSITELIB}/flaky/flaky_nose_plugin.py
+${PYSITELIB}/flaky/flaky_nose_plugin.pyc
+${PYSITELIB}/flaky/flaky_nose_plugin.pyo
+${PYSITELIB}/flaky/flaky_pytest_plugin.py
+${PYSITELIB}/flaky/flaky_pytest_plugin.pyc
+${PYSITELIB}/flaky/flaky_pytest_plugin.pyo
+${PYSITELIB}/flaky/multiprocess_string_io.py
+${PYSITELIB}/flaky/multiprocess_string_io.pyc
+${PYSITELIB}/flaky/multiprocess_string_io.pyo
+${PYSITELIB}/flaky/names.py
+${PYSITELIB}/flaky/names.pyc
+${PYSITELIB}/flaky/names.pyo
+${PYSITELIB}/flaky/utils.py
+${PYSITELIB}/flaky/utils.pyc
+${PYSITELIB}/flaky/utils.pyo
diff -r a8fa1dd458f2 -r 387308f15b4f devel/py-flaky/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/py-flaky/distinfo   Thu Jul 20 16:44:13 2017 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2017/07/20 16:44:13 adam Exp $
+
+SHA1 (flaky-3.4.0.tar.gz) = 4cb273a13ebe827c7902b0ce316a6df34f954ba7
+RMD160 (flaky-3.4.0.tar.gz) = 585be2734c20e9a69797c83acd6d480b5278f35e
+SHA512 (flaky-3.4.0.tar.gz) = 14fda6312e4eb8260a8190204622a7dd274d0c946dda07ec8aa65e8c341f7f4a701c704c807f50eacf77589231b37c3bb06eec18d60a718f24e9b0182f7e8cb5
+Size (flaky-3.4.0.tar.gz) = 29197 bytes



Home | Main Index | Thread Index | Old Index