py-tox: updated to 3.12.1
v3.12.1: Bugfixes - Ensure TOX_WORK_DIR is a native string in os.environ - Fix import and usage of winreg for python2.7 on windows - Fix Windows selects incorrect spec on first discovery v3.12.0: Bugfixes - When using --parallel with --result-json the test results are now included the same way as with serial runs - Turns out the output of the py -0p is not stable yet and varies depending on various edge cases. Instead now we read the interpreter values directly from registry via PEP-514 Features - Adding TOX_PARALLEL_NO_SPINNER environment variable to disable the spinner in parallel mode for the purposes of clean output when using CI tools
This commit is contained in:
parent
ee9119b9a6
commit
3a936912ea
3 changed files with 29 additions and 13 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.17 2019/05/17 08:39:14 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.18 2019/05/29 19:56:50 adam Exp $
|
||||
|
||||
DISTNAME= tox-3.11.1
|
||||
DISTNAME= tox-3.12.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=t/tox/}
|
||||
|
@ -31,8 +31,9 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=1.22.2:../../devel/py-test-xdist
|
|||
USE_LANGUAGES= # none
|
||||
|
||||
post-install:
|
||||
cd ${DESTDIR}${PREFIX}/bin && ${MV} tox tox-${PYVERSSUFFIX} && \
|
||||
${MV} tox-quickstart tox-quickstart-${PYVERSSUFFIX} || ${TRUE}
|
||||
cd ${DESTDIR}${PREFIX}/bin && \
|
||||
${MV} tox tox-${PYVERSSUFFIX} && \
|
||||
${MV} tox-quickstart tox-quickstart-${PYVERSSUFFIX} || ${TRUE}
|
||||
|
||||
do-test:
|
||||
cd ${WRKSRC} && pytest-${PYVERSSUFFIX}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.8 2019/04/09 07:51:41 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.9 2019/05/29 19:56:50 adam Exp $
|
||||
bin/tox-${PYVERSSUFFIX}
|
||||
bin/tox-quickstart-${PYVERSSUFFIX}
|
||||
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
||||
|
@ -58,9 +58,24 @@ ${PYSITELIB}/tox/helper/get_version.pyo
|
|||
${PYSITELIB}/tox/hookspecs.py
|
||||
${PYSITELIB}/tox/hookspecs.pyc
|
||||
${PYSITELIB}/tox/hookspecs.pyo
|
||||
${PYSITELIB}/tox/interpreters.py
|
||||
${PYSITELIB}/tox/interpreters.pyc
|
||||
${PYSITELIB}/tox/interpreters.pyo
|
||||
${PYSITELIB}/tox/interpreters/__init__.py
|
||||
${PYSITELIB}/tox/interpreters/__init__.pyc
|
||||
${PYSITELIB}/tox/interpreters/__init__.pyo
|
||||
${PYSITELIB}/tox/interpreters/py_spec.py
|
||||
${PYSITELIB}/tox/interpreters/py_spec.pyc
|
||||
${PYSITELIB}/tox/interpreters/py_spec.pyo
|
||||
${PYSITELIB}/tox/interpreters/unix.py
|
||||
${PYSITELIB}/tox/interpreters/unix.pyc
|
||||
${PYSITELIB}/tox/interpreters/unix.pyo
|
||||
${PYSITELIB}/tox/interpreters/via_path.py
|
||||
${PYSITELIB}/tox/interpreters/via_path.pyc
|
||||
${PYSITELIB}/tox/interpreters/via_path.pyo
|
||||
${PYSITELIB}/tox/interpreters/windows/__init__.py
|
||||
${PYSITELIB}/tox/interpreters/windows/__init__.pyc
|
||||
${PYSITELIB}/tox/interpreters/windows/__init__.pyo
|
||||
${PYSITELIB}/tox/interpreters/windows/pep514.py
|
||||
${PYSITELIB}/tox/interpreters/windows/pep514.pyc
|
||||
${PYSITELIB}/tox/interpreters/windows/pep514.pyo
|
||||
${PYSITELIB}/tox/logs/__init__.py
|
||||
${PYSITELIB}/tox/logs/__init__.pyc
|
||||
${PYSITELIB}/tox/logs/__init__.pyo
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.15 2019/05/17 08:39:14 adam Exp $
|
||||
$NetBSD: distinfo,v 1.16 2019/05/29 19:56:50 adam Exp $
|
||||
|
||||
SHA1 (tox-3.11.1.tar.gz) = 374f183b06d9cc0cb665e253a5f2ae2cac103349
|
||||
RMD160 (tox-3.11.1.tar.gz) = 336206a80d5d107b92ffbd06112c154da07beaf2
|
||||
SHA512 (tox-3.11.1.tar.gz) = a49f6c851505d129aacfa0a5e49ddfe1892b04465b1c1a4bd98ce2a937fb6c145f75f34a56fb4f26515dc0bcd7317f0f3bc967b02a441b37e04e1878716a59a0
|
||||
Size (tox-3.11.1.tar.gz) = 284226 bytes
|
||||
SHA1 (tox-3.12.1.tar.gz) = 6751c82174456ce640cc4cfeb4c295da78225468
|
||||
RMD160 (tox-3.12.1.tar.gz) = 3aabd3591fe183cf44e806ff7c2c5b86f535eef7
|
||||
SHA512 (tox-3.12.1.tar.gz) = af7f72145213a68929c4ffaf6ec6071b74a8cd5a7ee6e663e575f92f4f0536654525cd757f61265913fbe5e089aa94b8a7400636ec946070c7ca4900d497b016
|
||||
Size (tox-3.12.1.tar.gz) = 287477 bytes
|
||||
|
|
Loading…
Reference in a new issue