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 257B215800A for ; Sun, 6 Aug 2023 10:03:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BFE32BC014; Sun, 6 Aug 2023 10:03:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 pigeon.gentoo.org (Postfix) with ESMTPS id 2ED922BC013 for ; Sun, 6 Aug 2023 10:03:32 +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 3EBC0340CB4 for ; Sun, 6 Aug 2023 10:03:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 72E7FE8F for ; Sun, 6 Aug 2023 10:03:29 +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: <1691316203.d5919af9e17798efe3bb50a1088bf672972e41a7.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-box/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-box/python-box-7.0.1.ebuild X-VCS-Directories: dev-python/python-box/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d5919af9e17798efe3bb50a1088bf672972e41a7 X-VCS-Branch: master Date: Sun, 6 Aug 2023 10:03:29 +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: f7780684-aa43-4406-ad0b-e47ccfd3b9a9 X-Archives-Hash: 2b2f1f29ba934aa1ab230cab8d3493b6 commit: d5919af9e17798efe3bb50a1088bf672972e41a7 Author: Michał Górny gentoo org> AuthorDate: Sun Aug 6 09:24:16 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 6 10:03:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5919af9 dev-python/python-box: Fix testing the C extension Signed-off-by: Michał Górny gentoo.org> dev-python/python-box/python-box-7.0.1.ebuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/dev-python/python-box/python-box-7.0.1.ebuild b/dev-python/python-box/python-box-7.0.1.ebuild index de2d866f1d92..c300e79fa62f 100644 --- a/dev-python/python-box/python-box-7.0.1.ebuild +++ b/dev-python/python-box/python-box-7.0.1.ebuild @@ -5,7 +5,7 @@ EAPI=8 DISTUTILS_EXT=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 @@ -38,3 +38,15 @@ BDEPEND=" " distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # looks like broken tests + # https://github.com/cdgriffith/Box/issues/257 + test/test_box.py::TestBox::test_box_kwargs_should_not_be_included + test/test_box.py::TestBox::test_box_namespace + ) + + rm -rf box || die + epytest +}