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 A5527158087 for ; Sat, 27 Nov 2021 13:46:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7C7B2BC00B; Sat, 27 Nov 2021 13:46:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 D50512BC00B for ; Sat, 27 Nov 2021 13:46:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BF0D5342E3A for ; Sat, 27 Nov 2021 13:46:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FA3D1D6 for ; Sat, 27 Nov 2021 13:46:24 +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: <1638020780.1249c1ff11b35bd003ce0c65ce7c3910c5aa1bfb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/trio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/trio/trio-0.19.0.ebuild X-VCS-Directories: dev-python/trio/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1249c1ff11b35bd003ce0c65ce7c3910c5aa1bfb X-VCS-Branch: master Date: Sat, 27 Nov 2021 13:46:24 +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: fb716ee7-77ef-4abc-9320-760cc52c8642 X-Archives-Hash: 489dc4f31f916c7b5338bd1d0b1fafac commit: 1249c1ff11b35bd003ce0c65ce7c3910c5aa1bfb Author: Michał Górny gentoo org> AuthorDate: Sat Nov 27 13:15:43 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 27 13:46:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1249c1ff dev-python/trio: Use EPYTEST_IGNORE for Internet tests Signed-off-by: Michał Górny gentoo.org> dev-python/trio/trio-0.19.0.ebuild | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/dev-python/trio/trio-0.19.0.ebuild b/dev-python/trio/trio-0.19.0.ebuild index 3a0aecc30f71..b02ca40ed6e5 100644 --- a/dev-python/trio/trio-0.19.0.ebuild +++ b/dev-python/trio/trio-0.19.0.ebuild @@ -52,17 +52,15 @@ EPYTEST_DESELECT=( trio/tests/test_exports.py::test_static_tool_sees_all_symbols ) +EPYTEST_IGNORE=( + # these tests require internet access + trio/tests/test_ssl.py + trio/tests/test_highlevel_ssl_helpers.py +) + distutils_enable_tests --install pytest distutils_enable_sphinx docs/source \ dev-python/immutables \ dev-python/sphinxcontrib-trio \ dev-python/sphinx_rtd_theme \ dev-python/towncrier - -python_prepare_all() { - # these tests require internet access - rm trio/tests/test_ssl.py || die - rm trio/tests/test_highlevel_ssl_helpers.py || die - - distutils-r1_python_prepare_all -}