From 62ad842a5de8d791b19d7886d27ccc8cbf5ca852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 26 Apr 2022 08:11:47 +0200 Subject: [PATCH] dev-python/async_generator: Disable plugin autoload to fix tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/840640 Signed-off-by: Michał Górny --- dev-python/async_generator/async_generator-1.10-r1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-python/async_generator/async_generator-1.10-r1.ebuild b/dev-python/async_generator/async_generator-1.10-r1.ebuild index 15e541a847521..3f5d16f121ee7 100644 --- a/dev-python/async_generator/async_generator-1.10-r1.ebuild +++ b/dev-python/async_generator/async_generator-1.10-r1.ebuild @@ -18,3 +18,8 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x6 DOCS=( README.rst ) distutils_enable_tests pytest + +python_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest +}