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 9B6211382C5 for ; Mon, 21 Jun 2021 22:04:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0295BE086A; Mon, 21 Jun 2021 22:04:58 +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 D86B1E086A for ; Mon, 21 Jun 2021 22:04:57 +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 C5B98335CEC for ; Mon, 21 Jun 2021 22:04:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 237A67A4 for ; Mon, 21 Jun 2021 22:04:55 +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: <1624313092.dfcf995c2d729f04fdfbec8d23b60b4a6cbc579b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pythran/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pythran/pythran-0.9.11.ebuild X-VCS-Directories: dev-python/pythran/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: dfcf995c2d729f04fdfbec8d23b60b4a6cbc579b X-VCS-Branch: master Date: Mon, 21 Jun 2021 22:04:55 +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: cc0c416a-71d4-4387-b333-999db2c23686 X-Archives-Hash: 192eca0da8aba0856a992bb449acc55b commit: dfcf995c2d729f04fdfbec8d23b60b4a6cbc579b Author: Michał Górny gentoo org> AuthorDate: Mon Jun 21 22:04:35 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 21 22:04:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfcf995c dev-python/pythran: Run tests in parallel Signed-off-by: Michał Górny gentoo.org> dev-python/pythran/pythran-0.9.11.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/dev-python/pythran/pythran-0.9.11.ebuild b/dev-python/pythran/pythran-0.9.11.ebuild index 20e8e8c81ad..1e70b667c25 100644 --- a/dev-python/pythran/pythran-0.9.11.ebuild +++ b/dev-python/pythran/pythran-0.9.11.ebuild @@ -4,7 +4,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{8..9} ) -inherit distutils-r1 +inherit distutils-r1 multiprocessing DESCRIPTION="Ahead of Time compiler for numeric kernels" HOMEPAGE=" @@ -26,6 +26,10 @@ RDEPEND=" dev-python/numpy[${PYTHON_USEDEP}] >=dev-python/ply-3.4[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/pytest-xdist[${PYTHON_USEDEP}] + )" distutils_enable_tests pytest @@ -36,5 +40,5 @@ src_prepare() { python_test() { local -x COLUMNS=80 - epytest + epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" }