Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 1106B1A9239 for ; Thu, 31 Mar 2022 21:48:48 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 48F5A84E7A; Thu, 31 Mar 2022 21:48:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7F37F84E7A for ; Thu, 31 Mar 2022 21:48:46 +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 BVsXg1IvrOXB for ; Thu, 31 Mar 2022 21:48:46 +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 C919084CEF for ; Thu, 31 Mar 2022 21:48:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C6BCAFB24; Thu, 31 Mar 2022 21:48:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1648763325208360" MIME-Version: 1.0 Date: Thu, 31 Mar 2022 21:48:45 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-test-asyncio To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220331214845.C6BCAFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1648763325208360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Mar 31 21:48:45 UTC 2022 Modified Files: pkgsrc/devel/py-test-asyncio: Makefile Log Message: py-test-asyncio: add new test dependency To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/py-test-asyncio/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1648763325208360 Content-Disposition: inline Content-Length: 1315 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-asyncio/Makefile diff -u pkgsrc/devel/py-test-asyncio/Makefile:1.16 pkgsrc/devel/py-test-asyncio/Makefile:1.17 --- pkgsrc/devel/py-test-asyncio/Makefile:1.16 Thu Mar 31 10:42:16 2022 +++ pkgsrc/devel/py-test-asyncio/Makefile Thu Mar 31 21:48:45 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2022/03/31 10:42:16 adam Exp $ +# $NetBSD: Makefile,v 1.17 2022/03/31 21:48:45 wiz Exp $ DISTNAME= pytest-asyncio-0.18.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} @@ -16,16 +16,20 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-coverage>= TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=5.7.1:../../devel/py-hypothesis TEST_DEPENDS+= ${PYPKGPREFIX}-flaky>=3.5.0:../../devel/py-flaky TEST_DEPENDS+= ${PYPKGPREFIX}-mypy>=0.931:../../lang/py-mypy +TEST_DEPENDS+= ${PYPKGPREFIX}-test-trio-[0-9]*:../../devel/py-test-trio USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 + .include "../../lang/python/pyversion.mk" + .if ${_PYTHON_VERSION} < 38 DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=3.7.2:../../devel/py-typing-extensions .endif -# package needs to be installed before testing +# package needs to be installed before testing, next line is not enough +#TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} --_----------=_1648763325208360--