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 DA29313835B for ; Fri, 21 Aug 2020 13:35:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A8ADE0930; Fri, 21 Aug 2020 13:35:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 EB261E0930 for ; Fri, 21 Aug 2020 13:35:13 +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 D7A88340CDE for ; Fri, 21 Aug 2020 13:35:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9319632E for ; Fri, 21 Aug 2020 13:35:08 +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: <1598016902.0fe085d7abd16f4ff3ae38ae02c71098904cb845.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-2.23.0.ebuild X-VCS-Directories: dev-python/dask/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0fe085d7abd16f4ff3ae38ae02c71098904cb845 X-VCS-Branch: master Date: Fri, 21 Aug 2020 13:35:08 +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: 2d9bc7e4-c5c6-4b10-a998-d4b268ee3687 X-Archives-Hash: 8917922894a7788091f370856aaa2ca5 commit: 0fe085d7abd16f4ff3ae38ae02c71098904cb845 Author: Michał Górny gentoo org> AuthorDate: Fri Aug 21 13:32:16 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Aug 21 13:35:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fe085d7 dev-python/dask: Respect MAKEOPTS for parallel tests Signed-off-by: Michał Górny gentoo.org> dev-python/dask/dask-2.23.0.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/dask/dask-2.23.0.ebuild b/dev-python/dask/dask-2.23.0.ebuild index b4855c7b782..1930b91f340 100644 --- a/dev-python/dask/dask-2.23.0.ebuild +++ b/dev-python/dask/dask-2.23.0.ebuild @@ -4,7 +4,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6..9} ) -inherit distutils-r1 +inherit distutils-r1 multiprocessing DESCRIPTION="Task scheduling and blocked algorithms for parallel processing" HOMEPAGE="https://dask.org/" @@ -48,6 +48,7 @@ src_prepare() { } python_test() { - pytest -vv -m "not network" -n auto || + pytest -vv -m "not network" \ + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" || die "Tests failed with ${EPYTHON}" }