From: Virgil Dupras Date: Tue, 31 Jul 2018 15:01:54 +0000 (-0400) Subject: dev-python/pillow: fix incompatibility with pytest-relaxed X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=26b53a37ef3782e46354355ecdcbcdc1b59ddc3d;p=gentoo.git dev-python/pillow: fix incompatibility with pytest-relaxed When installed, pytest-relaxed would make our tests fail. Disable it. Package-Manager: Portage-2.3.44, Repoman-2.3.10 --- diff --git a/dev-python/pillow/pillow-5.2.0.ebuild b/dev-python/pillow/pillow-5.2.0.ebuild index 5d2590a0a858..b4f435d0425c 100644 --- a/dev-python/pillow/pillow-5.2.0.ebuild +++ b/dev-python/pillow/pillow-5.2.0.ebuild @@ -83,7 +83,8 @@ python_compile_all() { python_test() { "${PYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}" - virtx pytest -vx Tests/test_*.py + # no:relaxed: pytest-relaxed plugin make our tests fail. deactivate if installed + virtx pytest -vx Tests/test_*.py -p no:relaxed } python_install() {