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 E8EBF158094 for ; Sun, 14 Aug 2022 09:51:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 10071E0999; Sun, 14 Aug 2022 09:51:06 +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 D3C9BE0999 for ; Sun, 14 Aug 2022 09:51:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C79D43414B5 for ; Sun, 14 Aug 2022 09:51:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5283553F for ; Sun, 14 Aug 2022 09:51:03 +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: <1660470503.89e4ee59e0465a9ac90a5094fdea919f0ebe02a2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/frozendict/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/frozendict/frozendict-2.3.2.ebuild X-VCS-Directories: dev-python/frozendict/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 89e4ee59e0465a9ac90a5094fdea919f0ebe02a2 X-VCS-Branch: master Date: Sun, 14 Aug 2022 09:51:03 +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: e1e809c7-3637-4bb9-a8a0-abbeb215f26a X-Archives-Hash: 149db5985c4cfd06c92ec188e4e1c87d commit: 89e4ee59e0465a9ac90a5094fdea919f0ebe02a2 Author: Petr Vaněk atlas cz> AuthorDate: Sun Aug 14 08:59:53 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Aug 14 09:48:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e4ee59 dev-python/frozendict: fix test phase Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Michał Górny gentoo.org> dev-python/frozendict/frozendict-2.3.2.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/frozendict/frozendict-2.3.2.ebuild b/dev-python/frozendict/frozendict-2.3.2.ebuild index bf424c54eba1..371501d7202e 100644 --- a/dev-python/frozendict/frozendict-2.3.2.ebuild +++ b/dev-python/frozendict/frozendict-2.3.2.ebuild @@ -21,7 +21,7 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~ppc64" -# few tests fail with python3_9 and one with python3_10 -RESTRICT="test" - -distutils_enable_tests pytest +python_test() { + cd "${T}" || die + epytest "${S}/test" +}