From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 85F5215820A for ; Tue, 08 Jul 2025 23:04:57 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 72EE33422CA for ; Tue, 08 Jul 2025 23:04:57 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A79EC11056A; Tue, 08 Jul 2025 23:03:11 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 9C20411056A for ; Tue, 08 Jul 2025 23:03:11 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 582B734221F for ; Tue, 08 Jul 2025 23:03:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A5082F3F for ; Tue, 08 Jul 2025 23:03:07 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1752015586.c9c83d4e07f4d4ddcf657343e97c0c8469aeaff7.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aiodns/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aiodns/aiodns-3.5.0.ebuild X-VCS-Directories: dev-python/aiodns/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: c9c83d4e07f4d4ddcf657343e97c0c8469aeaff7 X-VCS-Branch: master Date: Tue, 08 Jul 2025 23:03:07 +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: fbe47013-327b-45de-a727-7f58817b8e3c X-Archives-Hash: c5c3410591cbf2b4eb5cce648e93e29b commit: c9c83d4e07f4d4ddcf657343e97c0c8469aeaff7 Author: Eli Schwartz gentoo org> AuthorDate: Tue Jul 8 14:36:13 2025 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Tue Jul 8 22:59:46 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9c83d4e dev-python/aiodns: migrate from manual plugin handling to EPYTEST_PLUGINS Signed-off-by: Eli Schwartz gentoo.org> dev-python/aiodns/aiodns-3.5.0.ebuild | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dev-python/aiodns/aiodns-3.5.0.ebuild b/dev-python/aiodns/aiodns-3.5.0.ebuild index 07508add572d..cf34eadebfc8 100644 --- a/dev-python/aiodns/aiodns-3.5.0.ebuild +++ b/dev-python/aiodns/aiodns-3.5.0.ebuild @@ -3,6 +3,7 @@ EAPI=8 +EPYTEST_PLUGINS=( pytest-asyncio ) DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) @@ -23,15 +24,9 @@ RESTRICT="test" RDEPEND=">=dev-python/pycares-4.9.0[${PYTHON_USEDEP}]" DEPEND="${RDEPEND}" -BDEPEND=" - test? ( - dev-python/pytest-asyncio[${PYTHON_USEDEP}] - ) -" distutils_enable_tests pytest python_test() { - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -p asyncio --asyncio-mode=auto + epytest --asyncio-mode=auto }