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

(-)b/devel/Makefile (+1 lines)
Lines 4905-4910 Link Here
4905
    SUBDIR += py-pytest-isort
4905
    SUBDIR += py-pytest-isort
4906
    SUBDIR += py-pytest-localserver
4906
    SUBDIR += py-pytest-localserver
4907
    SUBDIR += py-pytest-mock
4907
    SUBDIR += py-pytest-mock
4908
    SUBDIR += py-pytest-pep8
4908
    SUBDIR += py-pytest-pycodestyle
4909
    SUBDIR += py-pytest-pycodestyle
4909
    SUBDIR += py-pytest-relaxed
4910
    SUBDIR += py-pytest-relaxed
4910
    SUBDIR += py-pytest-rerunfailures
4911
    SUBDIR += py-pytest-rerunfailures
(-)b/devel/py-pytest-pep8/Makefile (+33 lines)
Added Link Here
1
# $FreeBSD$
2
3
PORTNAME=	pytest-pep8
4
PORTVERSION=	1.0.6
5
CATEGORIES=	devel python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	meka@tilda.center
10
COMMENT=	Pytest plugin for efficiently checking PEP8 compliance
11
12
LICENSE=	APACHE20
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}pytest-cache>=0:devel/py-pytest-cache@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}pep8>=0:devel/pep8@${PY_FLAVOR}
18
19
USES=		python:3.5+
20
USE_PYTHON=	autoplist concurrent distutils
21
22
TEST_ENV=	PYTHONPATH=${WRKSRC}/src
23
24
NO_ARCH=	yes
25
26
do-test:
27
	cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts= \
28
		-k 'not test_strict \
29
		and not test_ok_verbose \
30
		and not test_mtime_caching \
31
		and not test_w293w292'
32
33
.include <bsd.port.mk>
(-)b/devel/py-pytest-pep8/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1576898226
2
SHA256 (pytest-pep8-1.0.6.tar.gz) = 032ef7e5fa3ac30f4458c73e05bb67b0f036a8a5cb418a534b3170f89f120318
3
SIZE (pytest-pep8-1.0.6.tar.gz) = 7271
(-)b/devel/py-pytest-pep8/pkg-descr (+4 lines)
Added Link Here
1
This plugin allows to configure on a per-project and per-file basis which
2
errors or warnings to care about.
3
4
WWW: https://bitbucket.org/pytest-dev/pytest-pep8

Return to bug 242756