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 D7F311581FD for ; Sat, 06 Sep 2025 16:15:19 +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 BF5C7335CAF for ; Sat, 06 Sep 2025 16:15:19 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A51611103BA; Sat, 06 Sep 2025 16:15:18 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 97C9B1103BA for ; Sat, 06 Sep 2025 16:15:18 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A09E335CAF for ; Sat, 06 Sep 2025 16:15:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B6263306C for ; Sat, 06 Sep 2025 16:15:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1757175311.d52761c2acc223b5b8f355fac0c8d5a8ebb925de.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xdoctest/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xdoctest/xdoctest-1.2.0.ebuild X-VCS-Directories: dev-python/xdoctest/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d52761c2acc223b5b8f355fac0c8d5a8ebb925de X-VCS-Branch: master Date: Sat, 06 Sep 2025 16:15:16 +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: 5ca19554-d661-47a9-a03e-d2a5d48ac25f X-Archives-Hash: 3dc7764c0abf69a8dff26fa521a7e9e3 commit: d52761c2acc223b5b8f355fac0c8d5a8ebb925de Author: Michał Górny gentoo org> AuthorDate: Sat Sep 6 15:55:34 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 6 16:15:11 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52761c2 dev-python/xdoctest: Use EPYTEST_PLUGINS Signed-off-by: Michał Górny gentoo.org> dev-python/xdoctest/xdoctest-1.2.0.ebuild | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/dev-python/xdoctest/xdoctest-1.2.0.ebuild b/dev-python/xdoctest/xdoctest-1.2.0.ebuild index 70d8909b5a6b..c2238df30d70 100644 --- a/dev-python/xdoctest/xdoctest-1.2.0.ebuild +++ b/dev-python/xdoctest/xdoctest-1.2.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..13} ) +PYTHON_COMPAT=( python3_{11..13} ) inherit distutils-r1 @@ -32,18 +32,14 @@ BDEPEND=" ) " +EPYTEST_PLUGIN_LOAD_VIA_ENV=1 +EPYTEST_PLUGINS=( "${PN}" ) distutils_enable_tests pytest -#distutils_enable_sphinx docs/source \ -# dev-python/autoapi \ -# dev-python/sphinx-rtd-theme python_test() { local EPYTEST_DESELECT=( tests/test_pytest_cli.py::test_simple_pytest_import_error_cli ) - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - local -x PYTEST_PLUGINS=xdoctest.plugin - epytest --pyargs tests xdoctest }