Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/manhole/
Date: Wed, 26 May 2021 13:42:52
Message-Id: 1622025288.f832ad00f4b459af5f6b4bf6bdef2bcdd78f68dc.andrewammerlaan@gentoo
1 commit: f832ad00f4b459af5f6b4bf6bdef2bcdd78f68dc
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed May 26 10:34:48 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 10:34:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f832ad00
7
8 dev-python/manhole: skip failing test
9
10 Closes: https://bugs.gentoo.org/792225
11 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
12
13 dev-python/manhole/manhole-1.8.0.ebuild | 13 ++++++-------
14 1 file changed, 6 insertions(+), 7 deletions(-)
15
16 diff --git a/dev-python/manhole/manhole-1.8.0.ebuild b/dev-python/manhole/manhole-1.8.0.ebuild
17 index f0e68e5ae..e6edae08f 100644
18 --- a/dev-python/manhole/manhole-1.8.0.ebuild
19 +++ b/dev-python/manhole/manhole-1.8.0.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 @@ -21,7 +21,7 @@ LICENSE="BSD-2"
27 SLOT="0"
28 KEYWORDS="~amd64 ~x86"
29
30 -DEPEND="
31 +BDEPEND="
32 test? (
33 dev-python/eventlet[${PYTHON_USEDEP}]
34 dev-python/gevent[${PYTHON_USEDEP}]
35 @@ -32,13 +32,11 @@ DEPEND="
36
37 S="${WORKDIR}/${MY_PN}-${PV}"
38
39 -distutils_enable_tests pytest
40 -distutils_enable_sphinx docs \
41 - dev-python/sphinx-py3doc-enhanced-theme \
42 - dev-python/sphinxcontrib-napoleon
43 +distutils_enable_tests --install pytest
44 +
45 +distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme
46
47 python_test() {
48 - distutils_install_for_testing
49 epytest \
50 --deselect tests/test_manhole.py::test_non_daemon_connection \
51 --deselect tests/test_manhole.py::test_daemon_connection \
52 @@ -47,6 +45,7 @@ python_test() {
53 --deselect tests/test_manhole.py::test_connection_handler_exec[str] \
54 --deselect tests/test_manhole.py::test_connection_handler_exec[func] \
55 --deselect tests/test_manhole.py::test_environ_variable_activation \
56 + --deselect tests/test_manhole.py::test_stderr_doesnt_deadlock \
57 --deselect tests/test_manhole_cli.py::test_help
58
59 }