Received: by mail.netbsd.org (Postfix, from userid 605) id 24B1684E09; Mon, 20 Jan 2020 11:56:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A202D84DF6 for ; Mon, 20 Jan 2020 11:56:13 +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 rOkG0-zQgD_d for ; Mon, 20 Jan 2020 11:56:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1CDB484CDB for ; Mon, 20 Jan 2020 11:56:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 16707FBF4; Mon, 20 Jan 2020 11:56:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_157952137367510" MIME-Version: 1.0 Date: Mon, 20 Jan 2020 11:56:13 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test5 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200120115613.16707FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_157952137367510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jan 20 11:56:13 UTC 2020 Modified Files: pkgsrc/devel/py-test5: Makefile distinfo Log Message: py-test5: updated to 5.3.3 pytest 5.3.3: Bug Fixes * Captured output during teardown is shown with -rP. * Fix a pytest-xdist crash when dealing with exceptions raised in subprocesses created by the multiprocessing module. * FixtureDef objects now properly register their finalizers with autouse and parameterized fixtures that execute before them in the fixture stack so they are torn down at the right times, and in the right order. * Fix parsing of outcomes containing multiple errors with testdir results (regression in 5.3.0). Trivial/Internal Changes * Optimized automatic renaming of test parameter IDs. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-test5/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/py-test5/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_157952137367510 Content-Disposition: inline Content-Length: 1623 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test5/Makefile diff -u pkgsrc/devel/py-test5/Makefile:1.8 pkgsrc/devel/py-test5/Makefile:1.9 --- pkgsrc/devel/py-test5/Makefile:1.8 Sun Dec 15 11:30:37 2019 +++ pkgsrc/devel/py-test5/Makefile Mon Jan 20 11:56:12 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2019/12/15 11:30:37 adam Exp $ +# $NetBSD: Makefile,v 1.9 2020/01/20 11:56:12 adam Exp $ -DISTNAME= pytest-5.3.2 +DISTNAME= pytest-5.3.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest/} Index: pkgsrc/devel/py-test5/distinfo diff -u pkgsrc/devel/py-test5/distinfo:1.7 pkgsrc/devel/py-test5/distinfo:1.8 --- pkgsrc/devel/py-test5/distinfo:1.7 Sun Dec 15 11:30:37 2019 +++ pkgsrc/devel/py-test5/distinfo Mon Jan 20 11:56:12 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2019/12/15 11:30:37 adam Exp $ +$NetBSD: distinfo,v 1.8 2020/01/20 11:56:12 adam Exp $ -SHA1 (pytest-5.3.2.tar.gz) = 3968347f945bc0c60578d245d65775f83d90ac5a -RMD160 (pytest-5.3.2.tar.gz) = c3e91b99a9f5327474e635d32481be79f0ad4383 -SHA512 (pytest-5.3.2.tar.gz) = 2ab39973848d2d4693edd1dbd7ab2798b574026c9277bddd4a18e57aec65b3d93de201e87f58eb26030183b5c71818e6e56bcc1cda8c50892546cb1c04d6984a -Size (pytest-5.3.2.tar.gz) = 995560 bytes +SHA1 (pytest-5.3.3.tar.gz) = 5cee959480d4670ad156857e82e831f97ef0446f +RMD160 (pytest-5.3.3.tar.gz) = 52d84c5dd76309bc6696fd43e741509c050d7559 +SHA512 (pytest-5.3.3.tar.gz) = 79ac431f6a965d00431d3fa8353c756166d88628acfc254225f495bae9ca5f9e78a0282156a1e523b044a18da5fec9925a1a2aab5fcda3bac39cdaf2dee7be36 +Size (pytest-5.3.3.tar.gz) = 990948 bytes --_----------=_157952137367510--