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 161921581D3 for ; Sat, 25 May 2024 03:53:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53233E29C3; Sat, 25 May 2024 03:53:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 2E37BE29C3 for ; Sat, 25 May 2024 03:53:52 +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 66D86335D0F for ; Sat, 25 May 2024 03:53:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EBB2F1AE0 for ; Sat, 25 May 2024 03:53:49 +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: <1716609199.e1c123a9aae6a503c3c58cc203056dc637cf35d3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/responses/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/responses/responses-0.25.0.ebuild X-VCS-Directories: dev-python/responses/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e1c123a9aae6a503c3c58cc203056dc637cf35d3 X-VCS-Branch: master Date: Sat, 25 May 2024 03:53:49 +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: 98e1ff0a-a364-45c8-8680-1f304ff9003a X-Archives-Hash: 39c076b4eac1c625d808d4e39911dbc5 commit: e1c123a9aae6a503c3c58cc203056dc637cf35d3 Author: Michał Górny gentoo org> AuthorDate: Sat May 25 03:51:53 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 25 03:53:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1c123a9 dev-python/responses: Fix async tests Closes: https://bugs.gentoo.org/932366 Signed-off-by: Michał Górny gentoo.org> dev-python/responses/responses-0.25.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/responses/responses-0.25.0.ebuild b/dev-python/responses/responses-0.25.0.ebuild index a743a02f58e4..965afd7779e8 100644 --- a/dev-python/responses/responses-0.25.0.ebuild +++ b/dev-python/responses/responses-0.25.0.ebuild @@ -34,6 +34,7 @@ RDEPEND=" BDEPEND=" test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] dev-python/pytest-httpserver[${PYTHON_USEDEP}] ) " @@ -42,5 +43,5 @@ distutils_enable_tests pytest python_test() { local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -p pytest_httpserver + epytest -o asyncio_mode=auto -p asyncio -p pytest_httpserver }