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 AB82415808B for ; Mon, 19 Feb 2024 08:40:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C29172BC013; Mon, 19 Feb 2024 08:40:20 +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 A125D2BC013 for ; Mon, 19 Feb 2024 08:40:20 +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 9853034311C for ; Mon, 19 Feb 2024 08:40:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01254118C for ; Mon, 19 Feb 2024 08:40:18 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1708331924.92bccf72e0be2371816b65c0f85824b99b0345d0.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/immutabledict/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/immutabledict/immutabledict-4.1.0.ebuild X-VCS-Directories: dev-python/immutabledict/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 92bccf72e0be2371816b65c0f85824b99b0345d0 X-VCS-Branch: master Date: Mon, 19 Feb 2024 08:40:18 +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: 1ada0ded-8cdd-4e98-b372-0ee9da8c312b X-Archives-Hash: f9f6bdcb66ab2a753d94464a32eb30e8 commit: 92bccf72e0be2371816b65c0f85824b99b0345d0 Author: Petr Vaněk gentoo org> AuthorDate: Mon Feb 19 08:37:04 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Mon Feb 19 08:38:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92bccf72 dev-python/immutabledict: deselect performance test Closes: https://bugs.gentoo.org/924831 Signed-off-by: Petr Vaněk gentoo.org> dev-python/immutabledict/immutabledict-4.1.0.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/immutabledict/immutabledict-4.1.0.ebuild b/dev-python/immutabledict/immutabledict-4.1.0.ebuild index cb5672afc8b2..ed9483252f7c 100644 --- a/dev-python/immutabledict/immutabledict-4.1.0.ebuild +++ b/dev-python/immutabledict/immutabledict-4.1.0.ebuild @@ -19,3 +19,9 @@ SLOT="0" KEYWORDS="amd64 arm64 ~ppc64" distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # performance test which fails occasionally under heavy load, + # see bug 924831 + tests/test_immutabledict.py::TestImmutableDict::test_performance +)