From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E149C158091 for ; Sun, 5 Jun 2022 06:16:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEE8FE091A; Sun, 5 Jun 2022 06:16:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE07FE091A for ; Sun, 5 Jun 2022 06:16:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EEC72341A3A for ; Sun, 5 Jun 2022 06:16:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFA2F4E5 for ; Sun, 5 Jun 2022 06:16:22 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1654409534.1a3c31fcd9c5bd5b6aad09ddd3004630a018186c.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pip-api/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pip-api/pip-api-0.0.29.ebuild X-VCS-Directories: dev-python/pip-api/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 1a3c31fcd9c5bd5b6aad09ddd3004630a018186c X-VCS-Branch: dev Date: Sun, 5 Jun 2022 06:16:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c3e50bab-cc5f-433f-af8d-440e8a438394 X-Archives-Hash: 960e31a9f08348d6fb98f73e77983bf0 commit: 1a3c31fcd9c5bd5b6aad09ddd3004630a018186c Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Sat Jun 4 23:06:53 2022 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Sun Jun 5 06:12:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1a3c31fc dev-python/pip-api: fix tests Closes: https://bugs.gentoo.org/849017 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/pip-api/pip-api-0.0.29.ebuild | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/dev-python/pip-api/pip-api-0.0.29.ebuild b/dev-python/pip-api/pip-api-0.0.29.ebuild index addfa72cc..6d1f48c81 100644 --- a/dev-python/pip-api/pip-api-0.0.29.ebuild +++ b/dev-python/pip-api/pip-api-0.0.29.ebuild @@ -3,16 +3,11 @@ EAPI=8 -COMMIT="1af2c0f4cc2aa3c50d906adc8da7a6ceb2ba5df7" -EPYTEST_DESELECT=( - tests/test_installed_distributions.py::test_installed_distributions_legacy_version - tests/test_installed_distributions.py::test_installed_distributions_multiple_paths -) -DISTUTILS_SETUPTOOLS="pyproject.toml" PYTHON_COMPAT=( python3_{8..11} pypy3 ) - +DISTUTILS_USE_PEP517=setuptools inherit distutils-r1 +COMMIT="1af2c0f4cc2aa3c50d906adc8da7a6ceb2ba5df7" DESCRIPTION="An unofficial, importable pip API" HOMEPAGE="https://github.com/di/pip-api" SRC_URI="https://github.com/di/pip-api/archive/${COMMIT}.tar.gz -> ${P}-${COMMIT}.tar.gz" # only for 0.0.29 @@ -31,4 +26,20 @@ BDEPEND=" ) " +EPYTEST_DESELECT=( + tests/test_installed_distributions.py::test_installed_distributions_legacy_version + tests/test_installed_distributions.py::test_installed_distributions_multiple_paths + + # disable tests that check for pinned version + tests/test_tests.py::test_all_the_right_pips + tests/test_version.py::test_version +) + distutils_enable_tests pytest + +python_prepare_all() { + distutils-r1_python_prepare_all + + # class constructor wants to download pinned pip version + sed "/class PipTestEnvironment/{n;s/__init__/init/}" -i tests/conftest.py || die +}