From 51277ccdd1fe0528f01e103763418c3de23237ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 17 Jul 2026 13:29:34 +0200 Subject: [PATCH] dev-python/sh: Run tests via pytest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/979404 Signed-off-by: Michał Górny --- dev-python/sh/sh-2.3.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/sh/sh-2.3.0.ebuild b/dev-python/sh/sh-2.3.0.ebuild index 057a99b2a129f..a2b62ba92c0dc 100644 --- a/dev-python/sh/sh-2.3.0.ebuild +++ b/dev-python/sh/sh-2.3.0.ebuild @@ -19,9 +19,10 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86" -distutils_enable_tests unittest +EPYTEST_PLUGINS=() +distutils_enable_tests pytest python_test() { local -x SH_TESTS_RUNNING=1 - eunittest -p "*_test.py" + epytest }