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 D6D61158090 for ; Tue, 24 May 2022 06:16:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63F4EE092F; Tue, 24 May 2022 06:16:35 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4ED39E092F for ; Tue, 24 May 2022 06:16:35 +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 82C1B341740 for ; Tue, 24 May 2022 06:16:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A057B4F7 for ; Tue, 24 May 2022 06:16:30 +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: <1653372937.89c6cfd0b4c4cfe236dc432f6bb3e8b45544a6fd.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/twine/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/twine/twine-4.0.0.ebuild X-VCS-Directories: dev-python/twine/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 89c6cfd0b4c4cfe236dc432f6bb3e8b45544a6fd X-VCS-Branch: master Date: Tue, 24 May 2022 06:16:30 +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: 6dbe6540-2d2f-4c6b-8bf2-3a5b9273ac2a X-Archives-Hash: 696f84b579c0ba73578ebb410bef7269 commit: 89c6cfd0b4c4cfe236dc432f6bb3e8b45544a6fd Author: Michał Górny gentoo org> AuthorDate: Tue May 24 06:02:25 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 24 06:15:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89c6cfd0 dev-python/twine: Deselect failing test Signed-off-by: Michał Górny gentoo.org> dev-python/twine/twine-4.0.0.ebuild | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dev-python/twine/twine-4.0.0.ebuild b/dev-python/twine/twine-4.0.0.ebuild index 61e10a8a17e5..c8e882617c7b 100644 --- a/dev-python/twine/twine-4.0.0.ebuild +++ b/dev-python/twine/twine-4.0.0.ebuild @@ -48,8 +48,6 @@ BDEPEND=" distutils_enable_tests pytest python_prepare_all() { - # requires internet - rm -f tests/test_integration.py || die # pytest-socket dep relevant only to test_integration, and upstream # disables it anyway sed -i -e '/--disable-socket/d' pytest.ini || die @@ -60,6 +58,15 @@ python_prepare_all() { } python_test() { + local EPYTEST_IGNORE=( + # Internet + tests/test_integration.py + ) + local EPYTEST_DESELECT=( + # regression due to deps? + tests/test_check.py::test_fails_rst_no_content + ) + local -x COLUMNS=80 epytest }