From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 72B5E158089 for ; Mon, 30 Oct 2023 19:01:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 62FDE2BC047; Mon, 30 Oct 2023 19:01:51 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 452312BC047 for ; Mon, 30 Oct 2023 19:01:51 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E4A1335C8E for ; Mon, 30 Oct 2023 19:01:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C232F1307 for ; Mon, 30 Oct 2023 19:01:47 +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: <1698692459.3a7bf5f8d6f4517a4f07cb9a6d5fd776e6f9ccba.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/executing/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/executing/executing-2.0.0.ebuild X-VCS-Directories: dev-python/executing/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3a7bf5f8d6f4517a4f07cb9a6d5fd776e6f9ccba X-VCS-Branch: master Date: Mon, 30 Oct 2023 19:01:47 +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: acbdfd3a-bc58-4fdc-9807-49e423b76289 X-Archives-Hash: 95f42cd2a4328823c7028f67c9e25234 commit: 3a7bf5f8d6f4517a4f07cb9a6d5fd776e6f9ccba Author: Michał Górny gentoo org> AuthorDate: Mon Oct 30 18:36:49 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 30 19:00:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7bf5f8 dev-python/executing: Deselect test crashing on py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/executing/executing-2.0.0.ebuild | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dev-python/executing/executing-2.0.0.ebuild b/dev-python/executing/executing-2.0.0.ebuild index 992a4b31cee4..a5e4ed0cc8c8 100644 --- a/dev-python/executing/executing-2.0.0.ebuild +++ b/dev-python/executing/executing-2.0.0.ebuild @@ -37,6 +37,16 @@ distutils_enable_tests pytest export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} python_test() { + local EPYTEST_DESELECT=() + case ${EPYTHON} in + python3.10) + EPYTEST_DESELECT+=( + # crashes with infinite recursion (?) + "tests/test_main.py::test_small_samples[1656dc52edd2385921104de7bb255ca369713f4b8c034ebeba5cf946058109bc.py]" + ) + ;; + esac + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest }