a25c86a4aa
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>
27 lines
725 B
Makefile
27 lines
725 B
Makefile
# $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>
|