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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B89EB158090 for ; Tue, 3 May 2022 10:20:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9BC1FE0ABE; Tue, 3 May 2022 10:20:10 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7CBFBE0ABE for ; Tue, 3 May 2022 10:20:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5155A341818 for ; Tue, 3 May 2022 10:20:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7040F449 for ; Tue, 3 May 2022 10:20:06 +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: <1651573202.d8452e492de4389ffe780ed956e13db2da6a3fea.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/matplotlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/matplotlib/matplotlib-3.5.2.ebuild X-VCS-Directories: dev-python/matplotlib/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d8452e492de4389ffe780ed956e13db2da6a3fea X-VCS-Branch: master Date: Tue, 3 May 2022 10:20:06 +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: 14923178-c779-4594-b616-6460be338397 X-Archives-Hash: 8ef6a3129bad43db3d81759ee5368ff0 commit: d8452e492de4389ffe780ed956e13db2da6a3fea Author: Michał Górny gentoo org> AuthorDate: Tue May 3 10:02:32 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 3 10:20:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8452e49 dev-python/matplotlib: Use xdist to speed tests up Signed-off-by: Michał Górny gentoo.org> dev-python/matplotlib/matplotlib-3.5.2.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/matplotlib/matplotlib-3.5.2.ebuild b/dev-python/matplotlib/matplotlib-3.5.2.ebuild index 4184c7743b79..cf818c423210 100644 --- a/dev-python/matplotlib/matplotlib-3.5.2.ebuild +++ b/dev-python/matplotlib/matplotlib-3.5.2.ebuild @@ -6,7 +6,8 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..10} ) PYTHON_REQ_USE='tk?,threads(+)' -inherit distutils-r1 flag-o-matic virtualx toolchain-funcs prefix +inherit distutils-r1 flag-o-matic multiprocessing prefix toolchain-funcs \ + virtualx FT_PV=2.6.1 DESCRIPTION="Pure python plotting library with matlab like syntax" @@ -109,6 +110,7 @@ BDEPEND=" dev-python/flaky[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] dev-python/psutil[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] >=dev-python/pygobject-3.40.1-r1:3[cairo?,${PYTHON_USEDEP}] >=www-servers/tornado-6.0.4[${PYTHON_USEDEP}] x11-libs/gtk+:3[introspection] @@ -275,7 +277,8 @@ python_test() { # speed tests up local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - nonfatal epytest --pyargs matplotlib -m "not network" || die + nonfatal epytest --pyargs matplotlib -m "not network" \ + -p xdist.plugin -n "$(makeopts_jobs)" || die } python_install() {