svn commit: r480280 - head/devel/py-poyo

Matthew Seaman matthew at FreeBSD.org
Fri Sep 21 15:21:58 UTC 2018


Author: matthew
Date: Fri Sep 21 15:21:57 2018
New Revision: 480280
URL: https://svnweb.freebsd.org/changeset/ports/480280

Log:
  tox considered harmful when used with poudriere.
  
  Reported by:	koobs

Modified:
  head/devel/py-poyo/Makefile

Modified: head/devel/py-poyo/Makefile
==============================================================================
--- head/devel/py-poyo/Makefile	Fri Sep 21 15:21:00 2018	(r480279)
+++ head/devel/py-poyo/Makefile	Fri Sep 21 15:21:57 2018	(r480280)
@@ -12,8 +12,7 @@ COMMENT=	Lightweight YAML Parser
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}tox>0:devel/py-tox@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}flake8>0:devel/py-flake8@${PY_FLAVOR}
+TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}flake8>0:devel/py-flake8@${PY_FLAVOR}
 
 USES=		python
 USE_PYTHON=	autoplist concurrent distutils
@@ -21,6 +20,6 @@ USE_PYTHON=	autoplist concurrent distutils
 NO_ARCH=	yes
 
 do-test:
-	@cd ${WRKSRC} && ${LOCALBASE}/bin/tox-${PYTHON_VER}
+	@cd ${WRKSRC} && ${LOCALBASE}/bin/pytest-${PYTHON_VER} tests
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list