Gentoo Archives: gentoo-commits

From: Virgil Dupras <vdupras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/
Date: Tue, 31 Jul 2018 15:03:29
Message-Id: 1533049314.26b53a37ef3782e46354355ecdcbcdc1b59ddc3d.vdupras@gentoo
1 commit: 26b53a37ef3782e46354355ecdcbcdc1b59ddc3d
2 Author: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 31 15:01:54 2018 +0000
4 Commit: Virgil Dupras <vdupras <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 31 15:01:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26b53a37
7
8 dev-python/pillow: fix incompatibility with pytest-relaxed
9
10 When installed, pytest-relaxed would make our tests fail. Disable it.
11
12 Package-Manager: Portage-2.3.44, Repoman-2.3.10
13
14 dev-python/pillow/pillow-5.2.0.ebuild | 3 ++-
15 1 file changed, 2 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-python/pillow/pillow-5.2.0.ebuild b/dev-python/pillow/pillow-5.2.0.ebuild
18 index 5d2590a0a85..b4f435d0425 100644
19 --- a/dev-python/pillow/pillow-5.2.0.ebuild
20 +++ b/dev-python/pillow/pillow-5.2.0.ebuild
21 @@ -83,7 +83,8 @@ python_compile_all() {
22
23 python_test() {
24 "${PYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}"
25 - virtx pytest -vx Tests/test_*.py
26 + # no:relaxed: pytest-relaxed plugin make our tests fail. deactivate if installed
27 + virtx pytest -vx Tests/test_*.py -p no:relaxed
28 }
29
30 python_install() {