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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EEDF71382C5 for ; Mon, 12 Apr 2021 11:42:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DF6BE03EC; Mon, 12 Apr 2021 11:42:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A04F0E03EC for ; Mon, 12 Apr 2021 11:42:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FFAF340C43 for ; Mon, 12 Apr 2021 11:42:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29A2859C for ; Mon, 12 Apr 2021 11:42:45 +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: <1618227761.2bed9f4e2c7af2ad1ecb7ebf727e1058f193952c.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-0.17.0.ebuild X-VCS-Directories: dev-python/xarray/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2bed9f4e2c7af2ad1ecb7ebf727e1058f193952c X-VCS-Branch: master Date: Mon, 12 Apr 2021 11:42:45 +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: ceec4e32-70f7-46ac-b80f-6735b541b13c X-Archives-Hash: eed06dbb416e4eba0da187a44f9d365e commit: 2bed9f4e2c7af2ad1ecb7ebf727e1058f193952c Author: Michał Górny gentoo org> AuthorDate: Mon Apr 12 11:42:22 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Apr 12 11:42:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bed9f4e dev-python/xarray: Deselect failing warning test Closes: https://bugs.gentoo.org/779403 Signed-off-by: Michał Górny gentoo.org> dev-python/xarray/xarray-0.17.0.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dev-python/xarray/xarray-0.17.0.ebuild b/dev-python/xarray/xarray-0.17.0.ebuild index 894b1d80800..f797bf1c514 100644 --- a/dev-python/xarray/xarray-0.17.0.ebuild +++ b/dev-python/xarray/xarray-0.17.0.ebuild @@ -31,3 +31,12 @@ BDEPEND=" )" distutils_enable_tests pytest + +python_test() { + local deselect=( + # warning-targeted tests are fragile and not important to end users + xarray/tests/test_backends.py::test_no_warning_from_dask_effective_get + ) + + epytest ${deselect[@]/#/--deselect } +}