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/pillow/
Date: Tue, 03 Jan 2023 05:36:29
Message-Id: 1672724099.1e617cd85032ff2a50e7e3cf7844f85879fa7e21.mgorny@gentoo
1 commit: 1e617cd85032ff2a50e7e3cf7844f85879fa7e21
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 2 16:08:39 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 05:34:59 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e617cd8
7
8 dev-python/pillow: Skip failing test
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pillow/pillow-9.4.0.ebuild | 5 +++++
13 1 file changed, 5 insertions(+)
14
15 diff --git a/dev-python/pillow/pillow-9.4.0.ebuild b/dev-python/pillow/pillow-9.4.0.ebuild
16 index 923dd7d76648..74b03a94cd52 100644
17 --- a/dev-python/pillow/pillow-9.4.0.ebuild
18 +++ b/dev-python/pillow/pillow-9.4.0.ebuild
19 @@ -105,6 +105,11 @@ src_test() {
20 }
21
22 python_test() {
23 + local EPYTEST_DESELECT=(
24 + # TODO (is clipboard unreliable in Xvfb?)
25 + Tests/test_imagegrab.py::TestImageGrab::test_grabclipboard
26 + )
27 +
28 "${EPYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}"
29 # no:relaxed: pytest-relaxed plugin make our tests fail. deactivate if installed
30 epytest -p no:relaxed || die "Tests failed with ${EPYTHON}"