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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2DFC9158232 for ; Sun, 8 Dec 2024 16:04:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B96EE0CCF; Sun, 8 Dec 2024 16:04:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 AEBA1E0CCF for ; Sun, 8 Dec 2024 16:04: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 E69D4343108 for ; Sun, 8 Dec 2024 16:04:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ED8C4AED for ; Sun, 8 Dec 2024 16:04:17 +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: <1733673821.8d7968744ae5f285da34af273e0f72db70ffdb87.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xarray/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xarray/xarray-2024.11.0.ebuild X-VCS-Directories: dev-python/xarray/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8d7968744ae5f285da34af273e0f72db70ffdb87 X-VCS-Branch: master Date: Sun, 8 Dec 2024 16:04:17 +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: 374a310b-5122-4ea5-81d1-2cb1ead2d156 X-Archives-Hash: 70547195de6cfa603f4325ca17cea889 commit: 8d7968744ae5f285da34af273e0f72db70ffdb87 Author: Michał Górny gentoo org> AuthorDate: Sun Dec 8 16:03:41 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Dec 8 16:03:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d796874 dev-python/xarray: Gracefully deselect the test using seaborn Signed-off-by: Michał Górny gentoo.org> dev-python/xarray/xarray-2024.11.0.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/xarray/xarray-2024.11.0.ebuild b/dev-python/xarray/xarray-2024.11.0.ebuild index f8ef678508e4..68f19b04dd32 100644 --- a/dev-python/xarray/xarray-2024.11.0.ebuild +++ b/dev-python/xarray/xarray-2024.11.0.ebuild @@ -121,6 +121,12 @@ python_test() { ) fi + if ! has_version "dev-python/seaborn[${PYTHON_USEDEP}]"; then + EPYTEST_DESELECT+=( + xarray/tests/test_plot.py::TestContour::test_colors + ) + fi + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest }