View | Details | Raw Unified | Return to bug 228692
Collapse All | Expand All

(-)py-testrepository/Makefile (+27 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	testrepository
4
DISTVERSION=	0.0.20
5
CATEGORIES=	devel python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	freebsd_ports@k-worx.org
10
COMMENT=	Repository of test results
11
12
LICENSE=	APACHE20 BSD3CLAUSE
13
LICENSE_COMB=	dual
14
LICENSE_FILE_APACHE20=		${WRKSRC}/Apache-2.0
15
LICENSE_FILE_BSD3CLAUSE=	${WRKSRC}/BSD
16
17
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}fixtures>0:devel/py-fixtures@${PY_FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}python-subunit>=0.0.18:devel/py-python-subunit@${PY_FLAVOR} \
19
		${PYTHON_PKGNAMEPREFIX}testtools>=0.9.30:devel/py-testtools@${PY_FLAVOR}
20
21
USES=		python shebangfix
22
USE_PYTHON=	distutils concurrent autoplist
23
SHEBANG_FILES=	testr
24
25
NO_ARCH=	yes
26
27
.include <bsd.port.mk>
(-)py-testrepository/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1527335603
2
SHA256 (testrepository-0.0.20.tar.gz) = 752449bc98c20253ec4611c40564aea93d435a5bf3ff672208e01cc10e5858eb
3
SIZE (testrepository-0.0.20.tar.gz) = 84956
(-)py-testrepository/pkg-descr (+12 lines)
Line 0 Link Here
1
The package provides a database of test results which can be used as part of
2
developer workflow to ensure/check things like:
3
4
- No commits without having had a test failure, test fixed cycle.
5
- No commits without new tests being added.
6
- What tests have failed since the last commit (to run just a subset).
7
- What tests are currently failing and need work.
8
9
Test results are inserted using subunit (and thus anything that can output
10
subunit or be converted into a subunit stream can be accepted).
11
12
WWW: https://launchpad.net/testrepository

Return to bug 228692