Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Jun 2018 21:46:32 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r472825 - in head/devel: . py-testrepository
Message-ID:  <201806192146.w5JLkW3h046529@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Tue Jun 19 21:46:32 2018
New Revision: 472825
URL: https://svnweb.freebsd.org/changeset/ports/472825

Log:
  Add py-testrepository 0.0.20
  
  The package provides a database of test results which can be used as part of
  developer workflow to ensure/check things like:
  
  - No commits without having had a test failure, test fixed cycle.
  - No commits without new tests being added.
  - What tests have failed since the last commit (to run just a subset).
  - What tests are currently failing and need work.
  
  Test results are inserted using subunit (and thus anything that can output
  subunit or be converted into a subunit stream can be accepted).
  
  WWW: https://launchpad.net/testrepository
  
  PR:		228692
  Submitted by:	Kai <freebsd_ports@k-worx.org>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Jun 19 21:46:26 2018	(r472824)
+++ head/devel/Makefile	Tue Jun 19 21:46:32 2018	(r472825)
@@ -5054,6 +5054,7 @@
     SUBDIR += py-testinfra
     SUBDIR += py-testoob
     SUBDIR += py-testpath
+    SUBDIR += py-testrepository
     SUBDIR += py-testresources
     SUBDIR += py-testscenarios
     SUBDIR += py-testtools

Added: head/devel/py-testrepository/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-testrepository/Makefile	Tue Jun 19 21:46:32 2018	(r472825)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	testrepository
+DISTVERSION=	0.0.20
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	freebsd_ports@k-worx.org
+COMMENT=	Repository of test results
+
+LICENSE=	APACHE20 BSD3CLAUSE
+LICENSE_COMB=	dual
+LICENSE_FILE_APACHE20=		${WRKSRC}/Apache-2.0
+LICENSE_FILE_BSD3CLAUSE=	${WRKSRC}/BSD
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}fixtures>0:devel/py-fixtures@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}python-subunit>=0.0.18:devel/py-python-subunit@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}testtools>=0.9.30:devel/py-testtools@${PY_FLAVOR}
+
+USES=		python shebangfix
+USE_PYTHON=	distutils concurrent autoplist
+SHEBANG_FILES=	testr
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-testrepository/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-testrepository/distinfo	Tue Jun 19 21:46:32 2018	(r472825)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1527335603
+SHA256 (testrepository-0.0.20.tar.gz) = 752449bc98c20253ec4611c40564aea93d435a5bf3ff672208e01cc10e5858eb
+SIZE (testrepository-0.0.20.tar.gz) = 84956

Added: head/devel/py-testrepository/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-testrepository/pkg-descr	Tue Jun 19 21:46:32 2018	(r472825)
@@ -0,0 +1,12 @@
+The package provides a database of test results which can be used as part of
+developer workflow to ensure/check things like:
+
+- No commits without having had a test failure, test fixed cycle.
+- No commits without new tests being added.
+- What tests have failed since the last commit (to run just a subset).
+- What tests are currently failing and need work.
+
+Test results are inserted using subunit (and thus anything that can output
+subunit or be converted into a subunit stream can be accepted).
+
+WWW: https://launchpad.net/testrepository



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