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

Collapse All | Expand All

(-)b/devel/Makefile (+1 lines)
Lines 4877-4882 Link Here
4877
    SUBDIR += py-pytest-fixture-config
4877
    SUBDIR += py-pytest-fixture-config
4878
    SUBDIR += py-pytest-flake8
4878
    SUBDIR += py-pytest-flake8
4879
    SUBDIR += py-pytest-flakes
4879
    SUBDIR += py-pytest-flakes
4880
    SUBDIR += py-pytest-flask
4880
    SUBDIR += py-pytest-forked
4881
    SUBDIR += py-pytest-forked
4881
    SUBDIR += py-pytest-helpers-namespace
4882
    SUBDIR += py-pytest-helpers-namespace
4882
    SUBDIR += py-pytest-isort
4883
    SUBDIR += py-pytest-isort
(-)b/devel/py-pytest-flask/Makefile (+30 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
20
USES=		python:3.5+
21
USE_PYTHON=	autoplist concurrent distutils
22
23
TEST_ENV=	PYTHONPATH=${WRKSRC}/src
24
25
NO_ARCH=	yes
26
27
do-test:
28
	cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts=
29
30
.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