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 B672115838C for ; Wed, 17 Jan 2024 17:11:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3FDDE2B68; Wed, 17 Jan 2024 17:11:49 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CFF8DE2AB2 for ; Wed, 17 Jan 2024 17:11:49 +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 CCD11343270 for ; Wed, 17 Jan 2024 17:11:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 353C2AB4 for ; Wed, 17 Jan 2024 17:11:47 +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: <1705511501.a27da484bf49bfbcdf9e91cfd7653a7b2cb1a10f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pip/pip-23.3.2.ebuild X-VCS-Directories: dev-python/pip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a27da484bf49bfbcdf9e91cfd7653a7b2cb1a10f X-VCS-Branch: master Date: Wed, 17 Jan 2024 17:11:47 +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: b4f9ead3-0671-4322-91d3-cd353e76912e X-Archives-Hash: 5f0f0ee36aef805e095832ff03ee473f commit: a27da484bf49bfbcdf9e91cfd7653a7b2cb1a10f Author: Michał Górny gentoo org> AuthorDate: Wed Jan 17 15:51:48 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 17 17:11:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a27da484 dev-python/pip: Use PYTEST_XDIST Signed-off-by: Michał Górny gentoo.org> dev-python/pip/pip-23.3.2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/pip/pip-23.3.2.ebuild b/dev-python/pip/pip-23.3.2.ebuild index 0b448915d1fb..69e2e40cefb0 100644 --- a/dev-python/pip/pip-23.3.2.ebuild +++ b/dev-python/pip/pip-23.3.2.ebuild @@ -10,7 +10,7 @@ PYTHON_TESTED=( python3_{10..11} ) PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" python3_12 pypy3 ) PYTHON_REQ_USE="ssl(+),threads(+)" -inherit bash-completion-r1 distutils-r1 multiprocessing +inherit bash-completion-r1 distutils-r1 DESCRIPTION="The PyPA recommended tool for installing Python packages" HOMEPAGE=" @@ -117,7 +117,8 @@ python_test() { local -x SETUPTOOLS_USE_DISTUTILS=stdlib local -x PIP_DISABLE_PIP_VERSION_CHECK=1 - epytest -m "not network" -n "$(makeopts_jobs)" + local EPYTEST_XDIST=1 + epytest -m "not network" } python_install_all() {