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 73362158090 for ; Wed, 11 May 2022 06:19:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79BC8E0986; Wed, 11 May 2022 06:19:21 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5EAECE0986 for ; Wed, 11 May 2022 06:19:21 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4189D3419AC for ; Wed, 11 May 2022 06:19:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A728F458 for ; Wed, 11 May 2022 06:19: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: <1652249951.bce08cefbb2ce835a7d1bfc440ad89a1712763be.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlalchemy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sqlalchemy/sqlalchemy-1.4.35.ebuild dev-python/sqlalchemy/sqlalchemy-1.4.36.ebuild X-VCS-Directories: dev-python/sqlalchemy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bce08cefbb2ce835a7d1bfc440ad89a1712763be X-VCS-Branch: master Date: Wed, 11 May 2022 06:19: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: a7e30b04-3e39-4acd-af36-347aa9f7e31b X-Archives-Hash: cd1ffc795587003de1c6334e2b293af1 commit: bce08cefbb2ce835a7d1bfc440ad89a1712763be Author: Michał Górny gentoo org> AuthorDate: Wed May 11 05:58:46 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 11 06:19:11 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bce08cef dev-python/sqlalchemy: Deselect warning tests Closes: https://bugs.gentoo.org/843425 Signed-off-by: Michał Górny gentoo.org> dev-python/sqlalchemy/sqlalchemy-1.4.35.ebuild | 5 ++++- dev-python/sqlalchemy/sqlalchemy-1.4.36.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.35.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.35.ebuild index dd0849642f70..01bf4fee6568 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.4.35.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.35.ebuild @@ -45,7 +45,10 @@ src_prepare() { } python_test() { - local EPYTEST_DESELECT=() + local EPYTEST_DESELECT=( + # warning tests are unreliable + test/base/test_warnings.py + ) [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access ) diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.36.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.4.36.ebuild index 4eb4a4e1ddec..f6015bde3b33 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.4.36.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.4.36.ebuild @@ -45,7 +45,10 @@ src_prepare() { } python_test() { - local EPYTEST_DESELECT=() + local EPYTEST_DESELECT=( + # warning tests are unreliable + test/base/test_warnings.py + ) [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=( test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access )