Received: by mail.netbsd.org (Postfix, from userid 605) id 8110784DD0; Thu, 21 Jun 2018 06:41:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6C33484D33 for ; Thu, 21 Jun 2018 06:41:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id VvHjgf9XJWQy for ; Thu, 21 Jun 2018 06:41:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6786784D20 for ; Thu, 21 Jun 2018 06:41:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 61727FBEC; Thu, 21 Jun 2018 06:41:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1529563274170920" MIME-Version: 1.0 Date: Thu, 21 Jun 2018 06:41:14 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180621064114.61727FBEC@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. --_----------=_1529563274170920 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Thu Jun 21 06:41:14 UTC 2018 Modified Files: pkgsrc/devel/py-test: Makefile PLIST distinfo Log Message: py-test: updated to 3.6.2 Pytest 3.6.2: Bug Fixes Fix regression in Node.add_marker by extracting the mark object of a MarkDecorator. Warnings without location were reported as None. This is corrected to now report . Continue to call finalizers in the stack when a finalizer in a former scope raises an exception. Fix encoding error with print statements in doctests Improved Documentation Add documentation for the --strict flag. Trivial/Internal Changes Update old quotation style to parens in fixture.rst documentation. Improve display of hint about --fulltrace with KeyboardInterrupt. pytest’s testsuite is no longer runnable through python setup.py test – instead invoke pytest or tox directly. Fix typo in documentation To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/devel/py-test/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-test/PLIST cvs rdiff -u -r1.46 -r1.47 pkgsrc/devel/py-test/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1529563274170920 Content-Disposition: inline Content-Length: 3439 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test/Makefile diff -u pkgsrc/devel/py-test/Makefile:1.49 pkgsrc/devel/py-test/Makefile:1.50 --- pkgsrc/devel/py-test/Makefile:1.49 Wed Jun 6 19:27:51 2018 +++ pkgsrc/devel/py-test/Makefile Thu Jun 21 06:41:14 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.49 2018/06/06 19:27:51 adam Exp $ +# $NetBSD: Makefile,v 1.50 2018/06/21 06:41:14 adam Exp $ -DISTNAME= pytest-3.6.1 +DISTNAME= pytest-3.6.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest/} @@ -12,7 +12,7 @@ LICENSE= mit DEPENDS+= ${PYPKGPREFIX}-atomicwrites>=1.0:../../devel/py-atomicwrites DEPENDS+= ${PYPKGPREFIX}-attrs>=17.4.0:../../devel/py-attrs -DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat +#DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat DEPENDS+= ${PYPKGPREFIX}-more-itertools>=4.0.0:../../devel/py-more-itertools DEPENDS+= ${PYPKGPREFIX}-pluggy>=0.5:../../devel/py-pluggy DEPENDS+= ${PYPKGPREFIX}-py>=1.5.0:../../devel/py-py Index: pkgsrc/devel/py-test/PLIST diff -u pkgsrc/devel/py-test/PLIST:1.10 pkgsrc/devel/py-test/PLIST:1.11 --- pkgsrc/devel/py-test/PLIST:1.10 Fri Mar 23 08:58:00 2018 +++ pkgsrc/devel/py-test/PLIST Thu Jun 21 06:41:14 2018 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.10 2018/03/23 08:58:00 adam Exp $ +@comment $NetBSD: PLIST,v 1.11 2018/06/21 06:41:14 adam Exp $ bin/py.test-${PYVERSSUFFIX} bin/pytest-${PYVERSSUFFIX} ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO @@ -50,9 +50,18 @@ ${PYSITELIB}/_pytest/capture.pyo ${PYSITELIB}/_pytest/compat.py ${PYSITELIB}/_pytest/compat.pyc ${PYSITELIB}/_pytest/compat.pyo -${PYSITELIB}/_pytest/config.py -${PYSITELIB}/_pytest/config.pyc -${PYSITELIB}/_pytest/config.pyo +${PYSITELIB}/_pytest/config/__init__.py +${PYSITELIB}/_pytest/config/__init__.pyc +${PYSITELIB}/_pytest/config/__init__.pyo +${PYSITELIB}/_pytest/config/argparsing.py +${PYSITELIB}/_pytest/config/argparsing.pyc +${PYSITELIB}/_pytest/config/argparsing.pyo +${PYSITELIB}/_pytest/config/exceptions.py +${PYSITELIB}/_pytest/config/exceptions.pyc +${PYSITELIB}/_pytest/config/exceptions.pyo +${PYSITELIB}/_pytest/config/findpaths.py +${PYSITELIB}/_pytest/config/findpaths.pyc +${PYSITELIB}/_pytest/config/findpaths.pyo ${PYSITELIB}/_pytest/debugging.py ${PYSITELIB}/_pytest/debugging.pyc ${PYSITELIB}/_pytest/debugging.pyo Index: pkgsrc/devel/py-test/distinfo diff -u pkgsrc/devel/py-test/distinfo:1.46 pkgsrc/devel/py-test/distinfo:1.47 --- pkgsrc/devel/py-test/distinfo:1.46 Wed Jun 6 19:27:51 2018 +++ pkgsrc/devel/py-test/distinfo Thu Jun 21 06:41:14 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.46 2018/06/06 19:27:51 adam Exp $ +$NetBSD: distinfo,v 1.47 2018/06/21 06:41:14 adam Exp $ -SHA1 (pytest-3.6.1.tar.gz) = 5db6f5b546ee061e32468cc197c80123269579cb -RMD160 (pytest-3.6.1.tar.gz) = 6540ef9840426bb6ec17946b8f347cdff86ab2e0 -SHA512 (pytest-3.6.1.tar.gz) = 38a1ccc5a915c70c66b3c9ab89e8d42a1e481ec1dfb8aa1d37b1a03d9a4fa1167e9a278a280188f30abe3ad5bb1e1a0cc74e640ae2b2d005aa3f00abc5aef957 -Size (pytest-3.6.1.tar.gz) = 838906 bytes +SHA1 (pytest-3.6.2.tar.gz) = fd6dea9cd8b479278effac768b7a1b9b334f65ce +RMD160 (pytest-3.6.2.tar.gz) = d0d6018140f196415ed75787472538fd53a4ca83 +SHA512 (pytest-3.6.2.tar.gz) = 7ed9a2ceb1d3d69adc947bf0677c33839238d343916eff803cb61354f63248e645ba9b95635f5d8b97cf5295ca69ae75d03929d6369005c7651d8b2c7f2ead9d +Size (pytest-3.6.2.tar.gz) = 829730 bytes --_----------=_1529563274170920--