From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1297938-garchives=archives.gentoo.org@lists.gentoo.org>
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 D736813933E
	for <garchives@archives.gentoo.org>; Wed, 30 Jun 2021 21:20:01 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 344BDE0874;
	Wed, 30 Jun 2021 21:20:01 +0000 (UTC)
Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(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 1D01FE0874
	for <gentoo-commits@lists.gentoo.org>; Wed, 30 Jun 2021 21:20:01 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(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 F223333C6B6
	for <gentoo-commits@lists.gentoo.org>; Wed, 30 Jun 2021 21:19:59 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 614977C7
	for <gentoo-commits@lists.gentoo.org>; Wed, 30 Jun 2021 21:19:57 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1625087988.8d195b6f6491f89b3292c0d19876217eb3811c16.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-20.0.0.ebuild
X-VCS-Directories: dev-python/pyzmq/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 8d195b6f6491f89b3292c0d19876217eb3811c16
X-VCS-Branch: master
Date: Wed, 30 Jun 2021 21:19:57 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 95430354-b2fa-42ef-8007-282a5f2cc566
X-Archives-Hash: 42b1a8f09265b9307a98dd0d3d68eb0d

commit:     8d195b6f6491f89b3292c0d19876217eb3811c16
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 30 19:44:14 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jun 30 21:19:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d195b6f

dev-python/pyzmq: Skip more tests

The tests on this thing just love to crash or hang.  Add more skips,
so we get back to the 'status quo' of 'passing'.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pyzmq/pyzmq-20.0.0.ebuild | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/dev-python/pyzmq/pyzmq-20.0.0.ebuild b/dev-python/pyzmq/pyzmq-20.0.0.ebuild
index 27c307eec8e..1e654efef84 100644
--- a/dev-python/pyzmq/pyzmq-20.0.0.ebuild
+++ b/dev-python/pyzmq/pyzmq-20.0.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit flag-o-matic distutils-r1 toolchain-funcs
@@ -76,12 +76,13 @@ python_test() {
 		zmq/tests/test_security.py::TestSecurity::test_plain
 		zmq/tests/test_socket.py::TestSocket::test_large_send
 		zmq/tests/test_socket.py::TestSocket::test_tracker
-		zmq/tests/test_socket.py::TestSocketGreen::test_large_send
 
-		# hanging tests
-		zmq/tests/test_socket.py::TestSocketGreen::test_tracker
+		# green-thing tests cause hangs or crashes
+		zmq/tests/test_socket.py::TestSocketGreen
+
+		# hangs
+		zmq/tests/test_log.py::TestPubLog::test_blank_root_topic
 	)
 
-	pytest -vv ${deselect[@]/#/--deselect } ||
-		die "Tests failed with ${EPYTHON}"
+	epytest ${deselect[@]/#/--deselect }
 }