DESCR: pytest-relaxed provides 'relaxed' test discovery for pytest. It is the spiritual successor to https://pypi.python.org/pypi/spec, but is built for pytest instead of nosetests, and rethinks some aspects of the design (such as increased ability to opt-in to various behaviors.) Version 1.1.5 OK sthen
31 lines
586 B
Makefile
31 lines
586 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2019/11/08 23:18:09 kmos Exp $
|
|
|
|
COMMENT = relaxed test discovery/organization for pytest
|
|
|
|
MODPY_EGG_VERSION = 1.1.5
|
|
|
|
DISTNAME = pytest-relaxed-${MODPY_EGG_VERSION}
|
|
PKGNAME = ${DISTNAME:S/py/py-/}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://pytest-relaxed.readthedocs.io/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PYTEST = Yes
|
|
|
|
RUN_DEPENDS = devel/py-decorator${MODPY_FLAVOR} \
|
|
devel/py-six${MODPY_FLAVOR} \
|
|
devel/py-test${MODPY_FLAVOR}
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
.include <bsd.port.mk>
|