Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/trio/
Date: Thu, 07 Apr 2022 08:45:19
Message-Id: 1649321105.84c0461f155282edcb097156914767b4fac4d36e.mgorny@gentoo
1 commit: 84c0461f155282edcb097156914767b4fac4d36e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 7 08:40:54 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 7 08:45:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84c0461f
7
8 dev-python/trio: Fix tests
9
10 Closes: https://bugs.gentoo.org/834954
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/trio/trio-0.20.0.ebuild | 4 ++++
14 1 file changed, 4 insertions(+)
15
16 diff --git a/dev-python/trio/trio-0.20.0.ebuild b/dev-python/trio/trio-0.20.0.ebuild
17 index 07ef1e108cee..22ac3caa37a2 100644
18 --- a/dev-python/trio/trio-0.20.0.ebuild
19 +++ b/dev-python/trio/trio-0.20.0.ebuild
20 @@ -38,6 +38,9 @@ EPYTEST_DESELECT=(
21 # Times out on slower arches (ia64 in this case)
22 # https://github.com/python-trio/trio/issues/1753
23 trio/tests/test_unix_pipes.py::test_close_at_bad_time_for_send_all
24 +
25 + # incompatible ipython version?
26 + trio/_core/tests/test_multierror.py::test_ipython_exc_handler
27 )
28
29 EPYTEST_IGNORE=(
30 @@ -54,5 +57,6 @@ distutils_enable_sphinx docs/source \
31 dev-python/towncrier
32
33 python_test() {
34 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
35 epytest -m "not redistributors_should_skip"
36 }