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 2C2DF15808B for ; Wed, 14 Feb 2024 16:24:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F27BE2A53; Wed, 14 Feb 2024 16:24:48 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3F2C8E2A53 for ; Wed, 14 Feb 2024 16:24:48 +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 67DA0343082 for ; Wed, 14 Feb 2024 16:24:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A5AFF888 for ; Wed, 14 Feb 2024 16:24:45 +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: <1707927834.88d027efd2c6f3fe35fc42dc09ebfadbab72e2fb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txrequests/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/txrequests/txrequests-0.9.6-r1.ebuild X-VCS-Directories: dev-python/txrequests/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 88d027efd2c6f3fe35fc42dc09ebfadbab72e2fb X-VCS-Branch: master Date: Wed, 14 Feb 2024 16:24:45 +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: 03faf2a6-a9ca-4121-b95d-8f23de183287 X-Archives-Hash: 64bc80fbb6637996fbbed711f27bbebc commit: 88d027efd2c6f3fe35fc42dc09ebfadbab72e2fb Author: Michał Górny gentoo org> AuthorDate: Wed Feb 14 16:23:54 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 14 16:23:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88d027ef dev-python/txrequests: Fix running tests Signed-off-by: Michał Górny gentoo.org> dev-python/txrequests/txrequests-0.9.6-r1.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild b/dev-python/txrequests/txrequests-0.9.6-r1.ebuild index 035df39222d8..34f717029574 100644 --- a/dev-python/txrequests/txrequests-0.9.6-r1.ebuild +++ b/dev-python/txrequests/txrequests-0.9.6-r1.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 @@ -18,7 +18,8 @@ LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~arm64 ~riscv ~x86" IUSE="test" -RESTRICT="!test? ( test )" +PROPERTIES="test_network" +RESTRICT="test" RDEPEND=" >=dev-python/requests-1.2.0[${PYTHON_USEDEP}] @@ -31,5 +32,6 @@ BDEPEND=" " python_test() { - "${EPYTHON}" -m twisted.trial txrequests || die "Tests failed with ${EPYTHON}" + "${EPYTHON}" -m twisted.trial test_txrequests || + die "Tests failed for ${EPYTHON}" }