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 AD49B15806E for ; Sat, 27 May 2023 05:33:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25C6DE0896; Sat, 27 May 2023 05:33:04 +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 0874CE0896 for ; Sat, 27 May 2023 05:33:04 +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 08176341013 for ; Sat, 27 May 2023 05:33:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 391D6A80 for ; Sat, 27 May 2023 05:33:00 +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: <1685165575.04443a6d2e39048c8a4f8fc5419603de1301a0f1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyzmq/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyzmq/pyzmq-25.1.0.ebuild X-VCS-Directories: dev-python/pyzmq/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 04443a6d2e39048c8a4f8fc5419603de1301a0f1 X-VCS-Branch: master Date: Sat, 27 May 2023 05:33:00 +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: eda45574-1080-4950-b609-6514330673d8 X-Archives-Hash: 08bf6a7cfb8ccb4925379672b3c84c50 commit: 04443a6d2e39048c8a4f8fc5419603de1301a0f1 Author: Michał Górny gentoo org> AuthorDate: Sat May 27 05:29:13 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 27 05:32:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04443a6d dev-python/pyzmq: Update test deselects Signed-off-by: Michał Górny gentoo.org> dev-python/pyzmq/pyzmq-25.1.0.ebuild | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/dev-python/pyzmq/pyzmq-25.1.0.ebuild b/dev-python/pyzmq/pyzmq-25.1.0.ebuild index 2c1cdd0b2335..2a5adc9d8913 100644 --- a/dev-python/pyzmq/pyzmq-25.1.0.ebuild +++ b/dev-python/pyzmq/pyzmq-25.1.0.ebuild @@ -59,22 +59,14 @@ PATCHES=( EPYTEST_DESELECT=( # TODO - zmq/tests/test_constants.py::TestConstants::test_draft - zmq/tests/test_cython.py::test_cython - - # Hangs often - zmq/tests/test_log.py::TestPubLog::test_blank_root_topic + zmq/tests/test_auth.py + zmq/tests/test_cython.py + zmq/tests/test_zmqstream.py ) EPYTEST_IGNORE=( # Avoid dependency on mypy zmq/tests/test_mypy.py - - # Broken upstream - zmq/tests/test_auth.py - - # pytest-asyncio incompatibility? - zmq/tests/test_zmqstream.py ) distutils_enable_tests pytest @@ -91,6 +83,7 @@ python_prepare_all() { } python_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 cd "${BUILD_DIR}/install$(python_get_sitedir)" || die - epytest -p no:flaky + epytest -p asyncio -p rerunfailures }