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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 199141382C5 for ; Wed, 26 May 2021 12:03:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F044E1149; Wed, 26 May 2021 12:03:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 43AC4E1149 for ; Wed, 26 May 2021 12:03:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9FD38340E4F for ; Wed, 26 May 2021 12:03:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3EE1E581 for ; Wed, 26 May 2021 12:03:07 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1622025288.f832ad00f4b459af5f6b4bf6bdef2bcdd78f68dc.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/manhole/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/manhole/manhole-1.8.0.ebuild X-VCS-Directories: dev-python/manhole/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: f832ad00f4b459af5f6b4bf6bdef2bcdd78f68dc X-VCS-Branch: dev Date: Wed, 26 May 2021 12:03:07 +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: f0cb663a-233a-4a63-a04a-19c16e8ea033 X-Archives-Hash: b1e9ccc046ee4747bc065fdc1d9cb7d3 commit: f832ad00f4b459af5f6b4bf6bdef2bcdd78f68dc Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Wed May 26 10:34:48 2021 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Wed May 26 10:34:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f832ad00 dev-python/manhole: skip failing test Closes: https://bugs.gentoo.org/792225 Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> dev-python/manhole/manhole-1.8.0.ebuild | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/dev-python/manhole/manhole-1.8.0.ebuild b/dev-python/manhole/manhole-1.8.0.ebuild index f0e68e5ae..e6edae08f 100644 --- a/dev-python/manhole/manhole-1.8.0.ebuild +++ b/dev-python/manhole/manhole-1.8.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -21,7 +21,7 @@ LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND=" +BDEPEND=" test? ( dev-python/eventlet[${PYTHON_USEDEP}] dev-python/gevent[${PYTHON_USEDEP}] @@ -32,13 +32,11 @@ DEPEND=" S="${WORKDIR}/${MY_PN}-${PV}" -distutils_enable_tests pytest -distutils_enable_sphinx docs \ - dev-python/sphinx-py3doc-enhanced-theme \ - dev-python/sphinxcontrib-napoleon +distutils_enable_tests --install pytest + +distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme python_test() { - distutils_install_for_testing epytest \ --deselect tests/test_manhole.py::test_non_daemon_connection \ --deselect tests/test_manhole.py::test_daemon_connection \ @@ -47,6 +45,7 @@ python_test() { --deselect tests/test_manhole.py::test_connection_handler_exec[str] \ --deselect tests/test_manhole.py::test_connection_handler_exec[func] \ --deselect tests/test_manhole.py::test_environ_variable_activation \ + --deselect tests/test_manhole.py::test_stderr_doesnt_deadlock \ --deselect tests/test_manhole_cli.py::test_help }