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 E865A15817D for ; Wed, 19 Jun 2024 17:21:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21D49E2A09; Wed, 19 Jun 2024 17:21:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02234E2A09 for ; Wed, 19 Jun 2024 17:21:56 +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 41FFA33BE19 for ; Wed, 19 Jun 2024 17:21:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64F511C7B for ; Wed, 19 Jun 2024 17:21:54 +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: <1718817690.aca656d931bc6dbd4d6c9783048d79ff3d64705e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/trio-websocket/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/trio-websocket/trio-websocket-0.11.1.ebuild X-VCS-Directories: dev-python/trio-websocket/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: aca656d931bc6dbd4d6c9783048d79ff3d64705e X-VCS-Branch: master Date: Wed, 19 Jun 2024 17:21:54 +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: 76517455-7e9e-47b5-840e-9d0ca30405f8 X-Archives-Hash: b263d9d2c7c2e20c1cc918c73c2790e1 commit: aca656d931bc6dbd4d6c9783048d79ff3d64705e Author: Michał Górny gentoo org> AuthorDate: Wed Jun 19 16:13:18 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 19 17:21:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aca656d9 dev-python/trio-websocket: Deselect tests broken by new trio Closes: https://bugs.gentoo.org/927887 Signed-off-by: Michał Górny gentoo.org> dev-python/trio-websocket/trio-websocket-0.11.1.ebuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/dev-python/trio-websocket/trio-websocket-0.11.1.ebuild b/dev-python/trio-websocket/trio-websocket-0.11.1.ebuild index fc8389fa3907..68e77b5a7db0 100644 --- a/dev-python/trio-websocket/trio-websocket-0.11.1.ebuild +++ b/dev-python/trio-websocket/trio-websocket-0.11.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2023-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -39,6 +39,18 @@ BDEPEND=" distutils_enable_tests pytest python_test() { + local EPYTEST_DESELECT=( + # exception tests are broken with trio-0.25 + # https://github.com/python-trio/trio-websocket/issues/187 + tests/test_connection.py::test_handshake_exception_before_accept + tests/test_connection.py::test_reject_handshake + tests/test_connection.py::test_reject_handshake_invalid_info_status + tests/test_connection.py::test_client_open_timeout + tests/test_connection.py::test_client_close_timeout + tests/test_connection.py::test_client_connect_networking_error + tests/test_connection.py::test_finalization_dropped_exception + ) + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest -p trio }