Received: by mail.netbsd.org (Postfix, from userid 605) id D4DB584E1F; Tue, 18 Aug 2020 20:14:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 112BA84E21 for ; Tue, 18 Aug 2020 20:14:55 +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 CfHCSi2-cyiU for ; Tue, 18 Aug 2020 20:14:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 697C884CDB for ; Tue, 18 Aug 2020 20:14:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 66527FB28; Tue, 18 Aug 2020 20:14:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1597781694272220" MIME-Version: 1.0 Date: Tue, 18 Aug 2020 20:14:54 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/devel/py-test To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20200818201454.66527FB28@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. --_----------=_1597781694272220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Tue Aug 18 20:14:54 UTC 2020 Modified Files: pkgsrc/devel/py-test: Makefile Log Message: devel/py-test: Needs itself installed to run its own tests. To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93 pkgsrc/devel/py-test/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1597781694272220 Content-Disposition: inline Content-Length: 917 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.92 pkgsrc/devel/py-test/Makefile:1.93 --- pkgsrc/devel/py-test/Makefile:1.92 Wed Aug 5 14:09:30 2020 +++ pkgsrc/devel/py-test/Makefile Tue Aug 18 20:14:54 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.92 2020/08/05 14:09:30 adam Exp $ +# $NetBSD: Makefile,v 1.93 2020/08/18 20:14:54 riastradh Exp $ DISTNAME= pytest-6.0.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -24,6 +24,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose TEST_DEPENDS+= ${PYPKGPREFIX}-requests-[0-9]*:../../devel/py-requests +TEST_DEPENDS+= ${PYPKGPREFIX}-test-${PKGVERSION}:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-xmlschema-[0-9]*:../../textproc/py-xmlschema PYTHON_VERSIONS_INCOMPATIBLE= 27 # since 5.0.0 --_----------=_1597781694272220--