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 3F71415806E for ; Wed, 24 May 2023 08:32:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4AB72E07D0; Wed, 24 May 2023 08:32:36 +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 30582E07D0 for ; Wed, 24 May 2023 08:32:36 +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 1C06F340E30 for ; Wed, 24 May 2023 08:32:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6690AA68 for ; Wed, 24 May 2023 08:32:33 +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: <1684916917.ace4c7363a9fe498b0b95b86f4bdbf731af9df79.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-xdist/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-xdist/pytest-xdist-3.3.1.ebuild X-VCS-Directories: dev-python/pytest-xdist/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ace4c7363a9fe498b0b95b86f4bdbf731af9df79 X-VCS-Branch: master Date: Wed, 24 May 2023 08:32:33 +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: 7b1fe678-1afc-48fd-bb4e-2b25c345f94b X-Archives-Hash: b1ce46a2471b65dd587b749461fdaddc commit: ace4c7363a9fe498b0b95b86f4bdbf731af9df79 Author: Michał Górny gentoo org> AuthorDate: Wed May 24 08:26:26 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 24 08:28:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace4c736 dev-python/pytest-xdist: Remove py3.12 deselects, pytest is patched Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-xdist/pytest-xdist-3.3.1.ebuild | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/dev-python/pytest-xdist/pytest-xdist-3.3.1.ebuild b/dev-python/pytest-xdist/pytest-xdist-3.3.1.ebuild index 57cbcf2c12f1..300cd8d15766 100644 --- a/dev-python/pytest-xdist/pytest-xdist-3.3.1.ebuild +++ b/dev-python/pytest-xdist/pytest-xdist-3.3.1.ebuild @@ -41,16 +41,5 @@ python_test() { # since we disabled autoloading, force loading necessary plugins local -x PYTEST_PLUGINS=xdist.plugin,xdist.looponfail,pytest_forked - [[ ${PV} != 3.3.1 ]] && die "Recheck deselects, please!" - local EPYTEST_DESELECT=() - if [[ ${EPYTHON} == python3.12 ]]; then - EPYTEST_DESELECT+=( - # failures due to warnings from pytest - # https://github.com/pytest-dev/pytest-xdist/issues/914 - testing/acceptance_test.py::test_config_initialization - testing/acceptance_test.py::test_collection_crash - ) - fi - epytest }