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
This commit is contained in:
Kubilay Kocak 2016-01-26 10:20:14 +00:00
parent 0a60d35989
commit 2d2f69adbb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=407269

View File

@ -12,8 +12,6 @@ COMMENT= Port of the Tulip project (asyncio module, PEP 3156) on Python 2
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>