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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4660615823F for ; Sun, 19 Nov 2023 09:44:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BB562BC022; Sun, 19 Nov 2023 09:44:39 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 636442BC022 for ; Sun, 19 Nov 2023 09:44:39 +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 66D05335CCD for ; Sun, 19 Nov 2023 09:44:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A24BF1164 for ; Sun, 19 Nov 2023 09:44:36 +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: <1700387073.5ef32cb948a2bafb962924051a277f2fce74f08c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfakefs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyfakefs/pyfakefs-5.3.0.ebuild X-VCS-Directories: dev-python/pyfakefs/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5ef32cb948a2bafb962924051a277f2fce74f08c X-VCS-Branch: master Date: Sun, 19 Nov 2023 09:44:36 +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: 05cbf4ec-dec2-4a80-9d1d-3e851d9bf219 X-Archives-Hash: d8e650240db8032ba29b8e522c59452a commit: 5ef32cb948a2bafb962924051a277f2fce74f08c Author: Michał Górny gentoo org> AuthorDate: Sun Nov 19 09:23:59 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 19 09:44:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef32cb9 dev-python/pyfakefs: Deselect a regressing test on py3.12 Signed-off-by: Michał Górny gentoo.org> dev-python/pyfakefs/pyfakefs-5.3.0.ebuild | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dev-python/pyfakefs/pyfakefs-5.3.0.ebuild b/dev-python/pyfakefs/pyfakefs-5.3.0.ebuild index 10285776eca0..c34b2eaeac96 100644 --- a/dev-python/pyfakefs/pyfakefs-5.3.0.ebuild +++ b/dev-python/pyfakefs/pyfakefs-5.3.0.ebuild @@ -25,11 +25,22 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv distutils_enable_tests pytest python_test() { + local EPYTEST_DESELECT=() local EPYTEST_IGNORE=( # test for regression with opentimelineio package pyfakefs/pytest_tests/segfault_test.py ) + case ${EPYTHON} in + python3.12) + EPYTEST_DESELECT+=( + # happens with pandas + zstandard [cffi backend] + # https://github.com/pytest-dev/pyfakefs/issues/910 + pyfakefs/tests/patched_packages_test.py::TestPatchedPackages::test_read_{csv,table} + ) + ;; + esac + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest -p pyfakefs.pytest_plugin }