mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
8e6aa850a6
unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to magic. By default, nose will run tests in files or directories under the current working directory whose names include "test". nose also supports doctest tests and may optionally provide a test coverage report. Author: Jason Pellerin <jpellerin+nose@gmail.com> WWW: http://somethingaboutorange.com/mrl/projects/nose/ PR: ports/106704 Submitted by: Dryice Liu <dryice at dryice.name>
29 lines
698 B
Makefile
29 lines
698 B
Makefile
# New ports collection makefile for: py-nose
|
|
# Date created: 14 December 2006
|
|
# Whom: Dryice Liu <dryice@dryice.name>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nose
|
|
PORTVERSION= 0.9.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://somethingaboutorange.com/mrl/projects/nose/ \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= dryice@dryice.name
|
|
COMMENT= A discovery-based unittest extension
|
|
|
|
BUILD_DEPENDS= easy_install:${PORTSDIR}/devel/py-setuptools
|
|
RUN_DEPENDS= ${BUILD_DEPENDS=}
|
|
|
|
USE_PYTHON= 2.3+
|
|
USE_PYDISTUTILS= yes
|
|
NOSEVER?= ${PORTVERSION}
|
|
PYTHONVER?= ${_PYTHON_VERSION}
|
|
PLIST_SUB= NOSEVER=${NOSEVER} \
|
|
PYTHONVER=${PYTHONVER}
|
|
|
|
.include <bsd.port.mk>
|