View | Details | Raw Unified | Return to bug 242786 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/Makefile (+1 lines)
Lines 4900-4905 Link Here
4900
    SUBDIR += py-pytest-fixture-config
4900
    SUBDIR += py-pytest-fixture-config
4901
    SUBDIR += py-pytest-flake8
4901
    SUBDIR += py-pytest-flake8
4902
    SUBDIR += py-pytest-flakes
4902
    SUBDIR += py-pytest-flakes
4903
    SUBDIR += py-pytest-flask
4903
    SUBDIR += py-pytest-forked
4904
    SUBDIR += py-pytest-forked
4904
    SUBDIR += py-pytest-helpers-namespace
4905
    SUBDIR += py-pytest-helpers-namespace
4905
    SUBDIR += py-pytest-isort
4906
    SUBDIR += py-pytest-isort
(-)b/devel/py-pytest-flask/Makefile (+33 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	pytest-flask
4
PORTVERSION=	0.15.0
5
CATEGORIES=	devel python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	meka@tilda.center
10
COMMENT=	Set of pytest fixtures for Flask extensions and applications
11
12
LICENSE=	MIT
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Flask>=0:www/py-flask@${PY_FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}werkzeug>=0:www/py-werkzeug@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR}
18
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \
19
		pylint${PYTHON_PKGNAMESUFFIX}>=0:devel/pylint@${PY_FLAVOR} \
20
		${PYTHON_PKGNAMEPREFIX}pytest-cov>=0:devel/py-pytest-cov@${PY_FLAVOR} \
21
		${PYTHON_PKGNAMEPREFIX}pytest-pep8>=0:devel/py-pytest-pep8@${PY_FLAVOR}
22
23
USES=		python:3.5+
24
USE_PYTHON=	autoplist concurrent distutils
25
26
TEST_ENV=	PYTHONPATH=${WRKSRC}/src
27
28
NO_ARCH=	yes
29
30
do-test:
31
	cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts=
32
33
.include <bsd.port.mk>
(-)b/devel/py-pytest-flask/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1576975175
2
SHA256 (pytest-flask-0.15.0.tar.gz) = d874781b622210d8c5d8061cdb091cb059fcb12203125110bd8e6f9256ccbf49
3
SIZE (pytest-flask-0.15.0.tar.gz) = 24576
(-)b/devel/py-pytest-flask/pkg-descr (+4 lines)
Added Link Here
1
An extension of pytest test runner which provides a set of useful tools to
2
simplify testing and development of the Flask extensions and applications.
3
4
WWW: https://github.com/pytest-dev/pytest-flask

Return to bug 242786