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 52686138334 for ; Mon, 15 Jul 2019 12:51:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80BE3E0969; Mon, 15 Jul 2019 12:51:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 60E94E0969 for ; Mon, 15 Jul 2019 12:51:45 +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 24DE7346FAC for ; Mon, 15 Jul 2019 12:51:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 830526F8 for ; Mon, 15 Jul 2019 12:51:42 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1563195093.68e866ca2e8abf24c76df6aad40d6e00803cf12d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pillow/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pillow/pillow-6.1.0.ebuild X-VCS-Directories: dev-python/pillow/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 68e866ca2e8abf24c76df6aad40d6e00803cf12d X-VCS-Branch: master Date: Mon, 15 Jul 2019 12:51:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e79f051c-291d-4f88-9b80-e21b047ef503 X-Archives-Hash: 4dee1bc04002acacc3420b93636cbf75 commit: 68e866ca2e8abf24c76df6aad40d6e00803cf12d Author: Michał Górny gentoo org> AuthorDate: Mon Jul 15 12:35:42 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jul 15 12:51:33 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68e866ca dev-python/pillow: Spawn one virtx for all testing Signed-off-by: Michał Górny gentoo.org> dev-python/pillow/pillow-6.1.0.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/pillow/pillow-6.1.0.ebuild b/dev-python/pillow/pillow-6.1.0.ebuild index 7a4b5480a0a..ca751b2624c 100644 --- a/dev-python/pillow/pillow-6.1.0.ebuild +++ b/dev-python/pillow/pillow-6.1.0.ebuild @@ -79,10 +79,14 @@ python_compile_all() { use doc && emake -C docs html } +src_test() { + virtx distutils-r1_src_test +} + python_test() { "${PYTHON}" selftest.py --installed || die "selftest failed with ${EPYTHON}" # no:relaxed: pytest-relaxed plugin make our tests fail. deactivate if installed - virtx pytest -vv -p no:relaxed + pytest -vv -p no:relaxed || die "Tests fail with ${EPYTHON}" } python_install() {