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 404E0158089 for ; Sat, 30 Sep 2023 07:09:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64C082BC018; Sat, 30 Sep 2023 07:08:59 +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 436BF2BC018 for ; Sat, 30 Sep 2023 07:08:59 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 552E9335C67 for ; Sat, 30 Sep 2023 07:08:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0356810D2 for ; Sat, 30 Sep 2023 07:08:57 +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: <1696057733.908ffca2ab1f340c2ff245842d12435b020aeb0b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dask/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/dask/dask-2023.9.3.ebuild X-VCS-Directories: dev-python/dask/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 908ffca2ab1f340c2ff245842d12435b020aeb0b X-VCS-Branch: master Date: Sat, 30 Sep 2023 07:08:57 +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: 203577a0-ed96-4c48-8983-1997990ac28a X-Archives-Hash: 726d6fa9ac631d6e74bc3b1001d1e482 commit: 908ffca2ab1f340c2ff245842d12435b020aeb0b Author: Michał Górny gentoo org> AuthorDate: Sat Sep 30 07:07:14 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Sep 30 07:08:53 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=908ffca2 dev-python/dask: Use pytest-xdist! Signed-off-by: Michał Górny gentoo.org> dev-python/dask/dask-2023.9.3.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/dask/dask-2023.9.3.ebuild b/dev-python/dask/dask-2023.9.3.ebuild index 7e6a97864b43..532c80da9d4b 100644 --- a/dev-python/dask/dask-2023.9.3.ebuild +++ b/dev-python/dask/dask-2023.9.3.ebuild @@ -6,7 +6,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..11} ) -inherit distutils-r1 +inherit distutils-r1 multiprocessing DESCRIPTION="Task scheduling and blocked algorithms for parallel processing" HOMEPAGE=" @@ -42,6 +42,7 @@ BDEPEND=" dev-python/moto[${PYTHON_USEDEP}] dev-python/numexpr[${PYTHON_USEDEP}] dev-python/pytest-rerunfailures[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] dev-python/scipy[${PYTHON_USEDEP}] ) " @@ -81,5 +82,6 @@ python_test() { fi local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -p pytest_rerunfailures -m "not network" + epytest -p pytest_rerunfailures -m "not network" \ + -p xdist -n "$(makeopts_jobs)" }