Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2B93B84F9B for ; Thu, 16 Nov 2023 09:24:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 4oYL3W8NKwwq for ; Thu, 16 Nov 2023 09:24:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8FE0784CC9 for ; Thu, 16 Nov 2023 09:24:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8D186FA3D; Thu, 16 Nov 2023 09:24:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1700126643116540" MIME-Version: 1.0 Date: Thu, 16 Nov 2023 09:24:03 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test-xdist To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231116092403.8D186FA3D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1700126643116540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Nov 16 09:24:03 UTC 2023 Modified Files: pkgsrc/devel/py-test-xdist: Makefile distinfo Log Message: py-test-xdist: updated to 3.4.0 pytest-xdist 3.4.0 (2023-11-11) Features - Wait for workers to finish reporting when test run stops early. This makes sure that the results of in-progress tests are displayed. Previously these reports were being discarded, losing information about the test run. - Added support for Python 3.12. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 pkgsrc/devel/py-test-xdist/Makefile cvs rdiff -u -r1.37 -r1.38 pkgsrc/devel/py-test-xdist/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1700126643116540 Content-Disposition: inline Content-Length: 2001 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-xdist/Makefile diff -u pkgsrc/devel/py-test-xdist/Makefile:1.38 pkgsrc/devel/py-test-xdist/Makefile:1.39 --- pkgsrc/devel/py-test-xdist/Makefile:1.38 Sat Oct 28 19:57:07 2023 +++ pkgsrc/devel/py-test-xdist/Makefile Thu Nov 16 09:24:03 2023 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.38 2023/10/28 19:57:07 wiz Exp $ +# $NetBSD: Makefile,v 1.39 2023/11/16 09:24:03 adam Exp $ -DISTNAME= pytest-xdist-3.3.1 +DISTNAME= pytest-xdist-3.4.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} -PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-xdist/} @@ -21,10 +20,5 @@ USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 -# needs to be installed for testing, this setting is not enough -TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib -do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} testing - .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-test-xdist/distinfo diff -u pkgsrc/devel/py-test-xdist/distinfo:1.37 pkgsrc/devel/py-test-xdist/distinfo:1.38 --- pkgsrc/devel/py-test-xdist/distinfo:1.37 Wed May 24 06:53:06 2023 +++ pkgsrc/devel/py-test-xdist/distinfo Thu Nov 16 09:24:03 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.37 2023/05/24 06:53:06 adam Exp $ +$NetBSD: distinfo,v 1.38 2023/11/16 09:24:03 adam Exp $ -BLAKE2s (pytest-xdist-3.3.1.tar.gz) = 429034b312ab0f9b37851f8a0c90bfbebbda78dcc70c8fd33e348095e4d6faaa -SHA512 (pytest-xdist-3.3.1.tar.gz) = f439ff1acf65a8df025fec847602ebdc5355b2099501845f8cde3c5287299a9c3102fa6dd6fc82a30bc016893556a24b0b5409323f5db4015e77c711a7b5c59f -Size (pytest-xdist-3.3.1.tar.gz) = 77751 bytes +BLAKE2s (pytest-xdist-3.4.0.tar.gz) = 8cf50b425bd50c8595ab163a7092518827b51df255b47c19be99d3a82496e94e +SHA512 (pytest-xdist-3.4.0.tar.gz) = c8ec998b3b7dc10d416406c0e421c1909e67c7bcd8479674520c0371615d131c75f59f1fb46f19c38cacdc1a42119534d66ace9ba58d0230a96f4f6baf0df185 +Size (pytest-xdist-3.4.0.tar.gz) = 78703 bytes --_----------=_1700126643116540--