From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1587452-garchives=archives.gentoo.org@lists.gentoo.org>
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 F0A2915803E
	for <garchives@archives.gentoo.org>; Fri,  5 Jan 2024 20:19:13 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id A12382BC03E;
	Fri,  5 Jan 2024 20:19:06 +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 80BF42BC03E
	for <gentoo-commits@lists.gentoo.org>; Fri,  5 Jan 2024 20:19:06 +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 74367343141
	for <gentoo-commits@lists.gentoo.org>; Fri,  5 Jan 2024 20:19:05 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id AA84814C9
	for <gentoo-commits@lists.gentoo.org>; Fri,  5 Jan 2024 20:19:01 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1704485932.263cb89d81f4dffd226e14e8e425edee2b31e057.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tox/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/tox/tox-4.11.4.ebuild
X-VCS-Directories: dev-python/tox/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 263cb89d81f4dffd226e14e8e425edee2b31e057
X-VCS-Branch: master
Date: Fri,  5 Jan 2024 20:19:01 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 7c09c970-9b21-46d1-ab45-76b29c2f878e
X-Archives-Hash: 4de8338097a0c5bb2c30fdec8a9d03b5

commit:     263cb89d81f4dffd226e14e8e425edee2b31e057
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan  3 13:25:19 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan  5 20:18:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=263cb89d

dev-python/tox: epytest now takes care of removing tempdir

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/tox/tox-4.11.4.ebuild | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/dev-python/tox/tox-4.11.4.ebuild b/dev-python/tox/tox-4.11.4.ebuild
index de87ecfd1e77..6715cafa12ae 100644
--- a/dev-python/tox/tox-4.11.4.ebuild
+++ b/dev-python/tox/tox-4.11.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -83,8 +83,4 @@ python_test() {
 	)
 
 	epytest
-
-	# tox leaves a *humonogous* tempdir which easily leads to ENOSPC
-	# when running in parallel with other packages
-	rm -r "${T}"/pytest* || die
 }