Index: head/devel/py-pytest-xdist/Makefile =================================================================== --- head/devel/py-pytest-xdist/Makefile (revision 404547) +++ head/devel/py-pytest-xdist/Makefile (revision 404548) @@ -1,28 +1,33 @@ # Created by: Kubilay Kocak # $FreeBSD$ PORTNAME= pytest-xdist -PORTVERSION= 1.12 +PORTVERSION= 1.13.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= koobs@FreeBSD.org -COMMENT= Py.test plugin for distributed testing +COMMENT= Py.test plugin for distributed testing and loop-on-failing modes LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}execnet>=1.1:${PORTSDIR}/sysutils/py-execnet \ ${PYTHON_PKGNAMEPREFIX}pytest>=2.4.2:${PORTSDIR}/devel/py-pytest \ ${PYTHON_PKGNAMEPREFIX}py>=1.4.22:${PORTSDIR}/devel/py-py TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.5.1:${PORTSDIR}/devel/py-pytest \ ${PYTHON_PKGNAMEPREFIX}pexpect>0:${PORTSDIR}/misc/py-pexpect USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils -regression-test: build - @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest +NO_ARCH= yes + +post-extract: + ${RM} -rf ${WRKSRC}/testing/__pycache__ + +do-test: + @cd ${WRKSRC} && py.test .include Index: head/devel/py-pytest-xdist/distinfo =================================================================== --- head/devel/py-pytest-xdist/distinfo (revision 404547) +++ head/devel/py-pytest-xdist/distinfo (revision 404548) @@ -1,2 +1,2 @@ -SHA256 (pytest-xdist-1.12.tar.gz) = 1e696df146e62564fef2f0a7dabdd2d8f690fe6d68cb7aab0a1a4bd99e041580 -SIZE (pytest-xdist-1.12.tar.gz) = 39123 +SHA256 (pytest-xdist-1.13.1.tar.gz) = 4382d7a944c1e2b1dc17fee3fd3575495fb10236a3b6e95cc6955db04984bc3c +SIZE (pytest-xdist-1.13.1.tar.gz) = 110007 Index: head/devel/py-pytest-xdist/pkg-descr =================================================================== --- head/devel/py-pytest-xdist/pkg-descr (revision 404547) +++ head/devel/py-pytest-xdist/pkg-descr (revision 404548) @@ -1,15 +1,15 @@ The pytest-xdist plugin extends py.test with some unique test execution modes: * Test run parallelization: if you have multiple CPUs or hosts you can use those for a combined test run. This allows to speed up development or to use special resources of remote machines. * --boxed: (not available on Windows) run each test in a boxed subprocess to survive SEGFAULTS or otherwise dying processes * --looponfail: run your tests repeatedly in a subprocess. After each run py.test waits until a file in your project changes and then re-runs the previously failing tests. This is repeated until all tests pass after which again a full run is performed. * Multi-Platform coverage: you can specify different Python interpreters or different platforms and run tests in parallel on all of them. -WWW: http://bitbucket.org/hpk42/pytest-xdist +WWW: https://github.com/pytest-dev/pytest-xdist