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 B0744158083 for ; Sat, 7 Sep 2024 09:22:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A096E2A34; Sat, 7 Sep 2024 09:22:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2E215E2A34 for ; Sat, 7 Sep 2024 09:22:49 +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 4D87F343008 for ; Sat, 7 Sep 2024 09:22:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 670FD1DFC for ; Sat, 7 Sep 2024 09:22:45 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1725633473.a2240d9330f95135b8ca1f0f05a259673388de09.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/injector/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/injector/injector-0.21.0-r1.ebuild X-VCS-Directories: dev-python/injector/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: a2240d9330f95135b8ca1f0f05a259673388de09 X-VCS-Branch: master Date: Sat, 7 Sep 2024 09:22:45 +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: 234def8c-3cad-4c69-9124-9873f7f1e37c X-Archives-Hash: 779d17aa9ad0797d8fe1dad188dcea37 commit: a2240d9330f95135b8ca1f0f05a259673388de09 Author: Takuya Wakazono gmail com> AuthorDate: Fri Sep 6 14:37:53 2024 +0000 Commit: David Roman gmail com> CommitDate: Fri Sep 6 14:37:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a2240d93 dev-python/injector: fix tests Bug: https://bugs.gentoo.org/928158 Signed-off-by: Takuya Wakazono gmail.com> dev-python/injector/injector-0.21.0-r1.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/injector/injector-0.21.0-r1.ebuild b/dev-python/injector/injector-0.21.0-r1.ebuild index 7f9655b42..317b1fdd5 100644 --- a/dev-python/injector/injector-0.21.0-r1.ebuild +++ b/dev-python/injector/injector-0.21.0-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{9..12} ) @@ -21,6 +21,11 @@ KEYWORDS="~amd64 ~x86 ~x86-linux" distutils_enable_sphinx docs distutils_enable_tests pytest +python_test() { + # bug 928158 + epytest -o addopts= +} + python_install_all() { distutils-r1_python_install_all }