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 9193815815E for ; Sat, 3 Feb 2024 19:07:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE2052BC02F; Sat, 3 Feb 2024 19:07:24 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 64EE82BC02F for ; Sat, 3 Feb 2024 19:07:24 +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 2B6FD343133 for ; Sat, 3 Feb 2024 19:07:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44FD7134C for ; Sat, 3 Feb 2024 19:07:21 +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: <1706987210.b3c81b5bbb3b05590fcc01d9143687b2a9c824e5.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/werkzeug/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/werkzeug/werkzeug-3.0.1.ebuild X-VCS-Directories: dev-python/werkzeug/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b3c81b5bbb3b05590fcc01d9143687b2a9c824e5 X-VCS-Branch: master Date: Sat, 3 Feb 2024 19:07:21 +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: 6b492350-f2d0-4e82-9f17-0fa53523f0ce X-Archives-Hash: 4bb36a0eac1e15f5e9c111c647abc7a3 commit: b3c81b5bbb3b05590fcc01d9143687b2a9c824e5 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 3 19:06:29 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 3 19:06:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3c81b5b dev-python/werkzeug: Deselect test overeagerly collected by pytest-8 Closes: https://bugs.gentoo.org/923274 Signed-off-by: Michał Górny gentoo.org> dev-python/werkzeug/werkzeug-3.0.1.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-python/werkzeug/werkzeug-3.0.1.ebuild b/dev-python/werkzeug/werkzeug-3.0.1.ebuild index c34e787e2827..97ac07ce6e41 100644 --- a/dev-python/werkzeug/werkzeug-3.0.1.ebuild +++ b/dev-python/werkzeug/werkzeug-3.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -49,7 +49,12 @@ BDEPEND=" distutils_enable_tests pytest python_test() { - local EPYTEST_DESELECT=() + local EPYTEST_DESELECT=( + # RequestRedirect class started incidentally being tested + # with pytest-8, though the test isn't prepared for that + # https://github.com/pallets/werkzeug/issues/2845 + 'tests/test_exceptions.py::test_response_body[RequestRedirect]' + ) if ! has_version "dev-python/cryptography[${PYTHON_USEDEP}]"; then EPYTEST_DESELECT+=( "tests/test_serving.py::test_server[https]"