diff options
author | Virgil Dupras <vdupras@gentoo.org> | 2018-06-28 22:22:39 -0400 |
---|---|---|
committer | Virgil Dupras <vdupras@gentoo.org> | 2018-06-28 22:22:39 -0400 |
commit | 7b67f3093ff12c9d291f0e93daf651824dc0cdde (patch) | |
tree | 7c815c93e89e3998a335062a0d98bb62eb9d52f2 /dev-python | |
parent | net-vpn/libreswan: add 3.25 (diff) | |
download | gentoo-7b67f3093ff12c9d291f0e93daf651824dc0cdde.tar.gz gentoo-7b67f3093ff12c9d291f0e93daf651824dc0cdde.tar.bz2 gentoo-7b67f3093ff12c9d291f0e93daf651824dc0cdde.zip |
dev-python/pillow: exclude flaky tests
Closes: https://bugs.gentoo.org/593816
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/pillow/pillow-4.3.0-r1.ebuild | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/dev-python/pillow/pillow-4.3.0-r1.ebuild b/dev-python/pillow/pillow-4.3.0-r1.ebuild index 122241c36577..28006e3c4115 100644 --- a/dev-python/pillow/pillow-4.3.0-r1.ebuild +++ b/dev-python/pillow/pillow-4.3.0-r1.ebuild @@ -71,7 +71,15 @@ python_compile_all() { python_test() { "${PYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}" - virtx nosetests -vx Tests/test_*.py + # These excluded tests below depend heavily on freetype being at the exact + # same as the one pinned upstream. However, pillow supports a wider range + # of freetype versions. These tests are more useful to upstream developer + # than to us. Disabling. See bug 593816. + virtx nosetests -vx \ + -e "test_multiline_spacing" \ + -e "test_render_multiline(_text)?" \ + -e "test_textsize_equal" \ + Tests/test_*.py } python_install() { |