diff options
author | 2024-11-03 17:09:30 +0100 | |
---|---|---|
committer | 2024-11-03 17:10:24 +0100 | |
commit | 76d27c20fb94b733ff3c5e5893f6151ea16d111c (patch) | |
tree | 316b82e97af6e0981f1559b34247c9b7abb07114 /dev-python/pillow | |
parent | dev-util/shadowman: Bump to 4 (diff) | |
download | gentoo-76d27c20fb94b733ff3c5e5893f6151ea16d111c.tar.gz gentoo-76d27c20fb94b733ff3c5e5893f6151ea16d111c.tar.bz2 gentoo-76d27c20fb94b733ff3c5e5893f6151ea16d111c.zip |
dev-python/pillow: Deselect a known test failure on PPC
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pillow')
-rw-r--r-- | dev-python/pillow/pillow-11.0.0-r1.ebuild | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-python/pillow/pillow-11.0.0-r1.ebuild b/dev-python/pillow/pillow-11.0.0-r1.ebuild index f1fbdcb83c33..2deee775548d 100644 --- a/dev-python/pillow/pillow-11.0.0-r1.ebuild +++ b/dev-python/pillow/pillow-11.0.0-r1.ebuild @@ -117,6 +117,17 @@ python_test() { Tests/test_file_libtiff.py::TestFileLibTiff::test_lzma ) + case ${ARCH} in + ppc) + EPYTEST_DESELECT+=( + # https://github.com/python-pillow/Pillow/issues/7008 + # (we've reverted the upstream patch because it was worse + # than the original issue) + Tests/test_file_libtiff.py::TestFileLibTiff::test_exif_ifd + ) + ;; + esac + "${EPYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}" local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 # leak tests are fragile and broken under xdist |