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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0837515808A for ; Thu, 07 Aug 2025 22:22:54 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id E9961341FC5 for ; Thu, 07 Aug 2025 22:22:53 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E6A731104A0; Thu, 07 Aug 2025 22:22:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id DC1121104A0 for ; Thu, 07 Aug 2025 22:22:52 +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 95418341FC5 for ; Thu, 07 Aug 2025 22:22:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0751817F2 for ; Thu, 07 Aug 2025 22:22:51 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1754605023.df26fa6f083d7d3a98f72cbca9c0ba17e7cd4b8f.sam@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.9.1.ebuild dev-python/pyfakefs/pyfakefs-5.9.2.ebuild X-VCS-Directories: dev-python/pyfakefs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: df26fa6f083d7d3a98f72cbca9c0ba17e7cd4b8f X-VCS-Branch: master Date: Thu, 07 Aug 2025 22:22:51 +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: de7ae730-e623-414b-82db-03f4245a957f X-Archives-Hash: c1c8e966bf7981fa8967b6c4c36389fd commit: df26fa6f083d7d3a98f72cbca9c0ba17e7cd4b8f Author: Sam James gentoo org> AuthorDate: Thu Aug 7 22:16:25 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Aug 7 22:17:03 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df26fa6f dev-python/pyfakefs: skip test needing dev-python/openpyxl We could add it as a test dep but it's a single test: > FAILED pyfakefs/tests/patched_packages_test.py::TestPatchedPackages::test_read_excel - ImportError: Missing optional dependency 'openpyxl'. Use pip or conda to install openpyxl. Signed-off-by: Sam James gentoo.org> dev-python/pyfakefs/pyfakefs-5.9.1.ebuild | 2 ++ dev-python/pyfakefs/pyfakefs-5.9.2.ebuild | 2 ++ 2 files changed, 4 insertions(+) diff --git a/dev-python/pyfakefs/pyfakefs-5.9.1.ebuild b/dev-python/pyfakefs/pyfakefs-5.9.1.ebuild index 4d1f1c6f6eaf..856571a88e77 100644 --- a/dev-python/pyfakefs/pyfakefs-5.9.1.ebuild +++ b/dev-python/pyfakefs/pyfakefs-5.9.1.ebuild @@ -28,6 +28,8 @@ python_test() { local EPYTEST_DESELECT=( # requires *.dist-info/RECORD file that we're stripping pyfakefs/tests/fake_filesystem_test.py::RealFileSystemAccessTest::test_add_package_metadata + # wants dev-python/openpyxl + pyfakefs/tests/patched_packages_test.py::TestPatchedPackages::test_read_excel ) local EPYTEST_IGNORE=( # test for regression with opentimelineio package diff --git a/dev-python/pyfakefs/pyfakefs-5.9.2.ebuild b/dev-python/pyfakefs/pyfakefs-5.9.2.ebuild index fd8d3c9e5930..ee9353934e50 100644 --- a/dev-python/pyfakefs/pyfakefs-5.9.2.ebuild +++ b/dev-python/pyfakefs/pyfakefs-5.9.2.ebuild @@ -29,6 +29,8 @@ python_test() { local EPYTEST_DESELECT=( # requires *.dist-info/RECORD file that we're stripping pyfakefs/tests/fake_filesystem_test.py::RealFileSystemAccessTest::test_add_package_metadata + # wants dev-python/openpyxl + pyfakefs/tests/patched_packages_test.py::TestPatchedPackages::test_read_excel ) local EPYTEST_IGNORE=( # test for regression with opentimelineio package