From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2CD1D138334 for ; Fri, 29 Jun 2018 02:23:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B1E3E0921; Fri, 29 Jun 2018 02:23:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C7B6AE0921 for ; Fri, 29 Jun 2018 02:23:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 858EB335C70 for ; Fri, 29 Jun 2018 02:23:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A3672E5 for ; Fri, 29 Jun 2018 02:22:59 +0000 (UTC) From: "Virgil Dupras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Virgil Dupras" Message-ID: <1530238959.7b67f3093ff12c9d291f0e93daf651824dc0cdde.vdupras@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pillow/pillow-4.3.0-r1.ebuild X-VCS-Directories: dev-python/pillow/ X-VCS-Committer: vdupras X-VCS-Committer-Name: Virgil Dupras X-VCS-Revision: 7b67f3093ff12c9d291f0e93daf651824dc0cdde X-VCS-Branch: master Date: Fri, 29 Jun 2018 02:22:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 16a0afcb-fd38-4540-93fb-99c336349c1a X-Archives-Hash: 1b5aa3884544c3128fc9a07d0fbbc113 commit: 7b67f3093ff12c9d291f0e93daf651824dc0cdde Author: Virgil Dupras gentoo org> AuthorDate: Fri Jun 29 02:22:39 2018 +0000 Commit: Virgil Dupras gentoo org> CommitDate: Fri Jun 29 02:22:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b67f309 dev-python/pillow: exclude flaky tests Closes: https://bugs.gentoo.org/593816 Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-python/pillow/pillow-4.3.0-r1.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dev-python/pillow/pillow-4.3.0-r1.ebuild b/dev-python/pillow/pillow-4.3.0-r1.ebuild index 122241c3657..28006e3c411 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() {