svn commit: r407269 - head/devel/py-trollius
Kubilay Kocak
koobs at FreeBSD.org
Tue Jan 26 10:20:15 UTC 2016
Author: koobs
Date: Tue Jan 26 10:20:14 2016
New Revision: 407269
URL: https://svnweb.freebsd.org/changeset/ports/407269
Log:
devel/py-trollius: Fix TEST_DEPENDS
- Make mock a conditional TEST_DEPENDS
- Add missing unittest2 TEST_DEPENDS
- Remove run-aiotest from test target. Requires aiotest (PyPI)
Didn't pick this up in testing because mock and unittest2 were installed
locally, and running test: in poudriere is non-trivial at the moment.
PR: 206578
Modified:
head/devel/py-trollius/Makefile
Modified: head/devel/py-trollius/Makefile
==============================================================================
--- head/devel/py-trollius/Makefile Tue Jan 26 10:20:00 2016 (r407268)
+++ head/devel/py-trollius/Makefile Tue Jan 26 10:20:14 2016 (r407269)
@@ -12,8 +12,6 @@ COMMENT= Port of the Tulip project (asyn
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/COPYING
-TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock
-
USES= python
USE_PYTHON= autoplist distutils
@@ -23,11 +21,14 @@ NO_ARCH= yes
.if ${PYTHON_REL} < 3000
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}futures>0:${PORTSDIR}/devel/py-futures
+TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}unittest2>0:${PORTSDIR}/devel/py-unittest2
+.if ${PYTHON_REL} < 3300
+TEST_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock
+.endif
.endif
do-test:
@cd ${WRKSRC} && \
- ${PYTHON_CMD} runtests.py && \
- ${PYTHON_CMD} run_aiotest.py
+ ${PYTHON_CMD} runtests.py
.include <bsd.port.post.mk>
More information about the svn-ports-all
mailing list