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 3301A158030 for ; Sun, 26 Feb 2023 11:37:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68556E0827; Sun, 26 Feb 2023 11:37:23 +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 E8F16E0827 for ; Sun, 26 Feb 2023 11:37:22 +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 7B5D0340D77 for ; Sun, 26 Feb 2023 11:37:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D44B78B7 for ; Sun, 26 Feb 2023 11:37:19 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1677411341.0d94a32b9104cb62bbbe06b16658f3dc8a56e5db.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-testinfra/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-testinfra/pytest-testinfra-7.0.0.ebuild X-VCS-Directories: dev-python/pytest-testinfra/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 0d94a32b9104cb62bbbe06b16658f3dc8a56e5db X-VCS-Branch: master Date: Sun, 26 Feb 2023 11:37:19 +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: bca59335-0c34-4057-ace9-a119ab170d68 X-Archives-Hash: 78c3ced5c48f7e85113910169f8cca8e commit: 0d94a32b9104cb62bbbe06b16658f3dc8a56e5db Author: Marek Szuba gentoo org> AuthorDate: Sun Feb 26 11:35:41 2023 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sun Feb 26 11:35:41 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d94a32b dev-python/pytest-testinfra: s/EPYTEST_IGNORE/EPYTEST_DESELECT/g Done on my end even before the bug but I forgot to re-run "git add". Closes: https://bugs.gentoo.org/896400 Signed-off-by: Marek Szuba gentoo.org> dev-python/pytest-testinfra/pytest-testinfra-7.0.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pytest-testinfra/pytest-testinfra-7.0.0.ebuild b/dev-python/pytest-testinfra/pytest-testinfra-7.0.0.ebuild index 6e95a5f30b3f..a329f39e97ae 100644 --- a/dev-python/pytest-testinfra/pytest-testinfra-7.0.0.ebuild +++ b/dev-python/pytest-testinfra/pytest-testinfra-7.0.0.ebuild @@ -42,11 +42,11 @@ BDEPEND=" distutils_enable_tests pytest python_test() { - local -x EPYTEST_IGNORE=() + local -x EPYTEST_DESELECT=() # This is the only test which actually fails if salt cannot be imported if [[ ${EPYTHON} == python3.11 ]]; then - EPYTEST_IGNORE+=( + EPYTEST_DESELECT+=( test/test_backends.py::test_backend_importables ) fi