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 28E01158128 for ; Wed, 18 Jun 2025 07:11:55 +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 14BF1341E7D for ; Wed, 18 Jun 2025 07:11:55 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 76BD41104E7; Wed, 18 Jun 2025 07:11:44 +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 6B7BD1104E7 for ; Wed, 18 Jun 2025 07:11:44 +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 2530D3415D0 for ; Wed, 18 Jun 2025 07:11:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 439E029FC for ; Wed, 18 Jun 2025 07:11:41 +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: <1750230688.e03a2690a804535b22a241e5e32d197852498505.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/fakeredis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/fakeredis/fakeredis-2.30.0.ebuild X-VCS-Directories: dev-python/fakeredis/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e03a2690a804535b22a241e5e32d197852498505 X-VCS-Branch: master Date: Wed, 18 Jun 2025 07:11:41 +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: d32780e9-094e-40ab-9914-e9f941365a67 X-Archives-Hash: 108860e03472828ddfd98992237bbdaa commit: e03a2690a804535b22a241e5e32d197852498505 Author: Michał Górny gentoo org> AuthorDate: Wed Jun 18 05:54:11 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 18 07:11:28 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e03a2690 dev-python/fakeredis: Update deselects Signed-off-by: Michał Górny gentoo.org> dev-python/fakeredis/fakeredis-2.30.0.ebuild | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/dev-python/fakeredis/fakeredis-2.30.0.ebuild b/dev-python/fakeredis/fakeredis-2.30.0.ebuild index e396d2814748..ff530a27e663 100644 --- a/dev-python/fakeredis/fakeredis-2.30.0.ebuild +++ b/dev-python/fakeredis/fakeredis-2.30.0.ebuild @@ -44,8 +44,6 @@ src_prepare() { python_test() { local EPYTEST_DESELECT=( - # also lupa - test/test_aioredis2.py::test_failed_script_error # TODO "test/test_mixins/test_pubsub_commands.py::test_pubsub_channels[StrictRedis2]" "test/test_mixins/test_pubsub_commands.py::test_pubsub_channels[StrictRedis3]" @@ -66,11 +64,7 @@ python_test() { test/test_hypothesis test/test_hypothesis_joint.py ) - local args=( - # tests requiring lupa (lua support) - -k 'not test_eval and not test_lua and not test_script' - ) - # Note: this package is not xdist-friendly + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest -p asyncio -p pytest_mock "${args[@]}" }