From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-asyncio/
Date: Mon, 4 Dec 2023 13:45:03 +0000 (UTC) [thread overview]
Message-ID: <1701697495.0beede837191f4c62fa0ce6f58c63cdb1ee917fb.mgorny@gentoo> (raw)
commit: 0beede837191f4c62fa0ce6f58c63cdb1ee917fb
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 4 12:31:34 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec 4 13:44:55 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0beede83
dev-python/pytest-asyncio: Bump to 0.23.2
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pytest-asyncio/Manifest | 1 +
.../pytest-asyncio/pytest-asyncio-0.23.2.ebuild | 49 ++++++++++++++++++++++
2 files changed, 50 insertions(+)
diff --git a/dev-python/pytest-asyncio/Manifest b/dev-python/pytest-asyncio/Manifest
index fd1f4b44282a..32782fd97935 100644
--- a/dev-python/pytest-asyncio/Manifest
+++ b/dev-python/pytest-asyncio/Manifest
@@ -2,3 +2,4 @@ DIST pytest-asyncio-0.21.1.tar.gz 30492 BLAKE2B 6a17f9ba89b8181b5fb734af6d0c0904
DIST pytest-asyncio-0.22.0.tar.gz 37081 BLAKE2B 62941bdf10ee8a5195e900e71c7eba1810edd9721457656fc0b62dca3264f4ce0cba9221f80fd8a5249ee30e662cf068fcc8e491ba6b297e0370fcb04b7fe068 SHA512 7880b03c44997b0cb05b1c9633bf3e94e7eefc0396dc88512baf0e8f700508fa76eb9cbf2ce6d837be9ae0f1efb75343cdc32c7b2983e294ffa30e94893a3a2c
DIST pytest-asyncio-0.23.0.tar.gz 43658 BLAKE2B 893b446018ce460825555b1f42c36b27a0c2330d08e7588a4f59e8b6390390040b49cee02f27369f3135e95402eab7e3573bbae381e5ce81f23e578b1f21fa9d SHA512 903ec009617385c2e95fcb03e1fe23b5d372f5aaa334c5156b0fe19aab7c3d0272e7e5869a89a6b1c4b3282deba5e37b0832a54518455e48af0ef2a51f4b9ce6
DIST pytest-asyncio-0.23.1.tar.gz 43991 BLAKE2B b0e9b169b8b2b1eec12cc016b514dceeba1ea59df6e1b1ae83858412460db0d53ac128b05c15b6b75200a17fa2bcbf922f8f33ccba1f642319214f843a578393 SHA512 f4ddc4d097ede4ea340e93a44df0cc6ec7f0443623d7f994d09a902a81d1d12a61a3ad2f11da7fb276cff748a26a37984e6390b0264f79f4f536d64085bbd9ab
+DIST pytest-asyncio-0.23.2.tar.gz 44174 BLAKE2B 36dbd0022416eef05c781b9f74fd143bb52fe0583461ca7e52fd4981d552bbefdddd8e3a3399bc229a8ae68b150e199237ae0ce3a375075ab8f7f507bfa59316 SHA512 aa5b5fe8b633b187303dd2958d2ea01561604044507da107e46115d9bf4c1ac3c78826b4b6a6cbf474a6ee4ce0cd1bede87a2c8fe0d35397ddf6a4069437dd84
diff --git a/dev-python/pytest-asyncio/pytest-asyncio-0.23.2.ebuild b/dev-python/pytest-asyncio/pytest-asyncio-0.23.2.ebuild
new file mode 100644
index 000000000000..c35e42670f46
--- /dev/null
+++ b/dev-python/pytest-asyncio/pytest-asyncio-0.23.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2019-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Library for testing asyncio code with pytest"
+HOMEPAGE="
+ https://github.com/pytest-dev/pytest-asyncio/
+ https://pypi.org/project/pytest-asyncio/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+ >=dev-python/pytest-5.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+ test? (
+ >=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ local EPYTEST_DESELECT=(
+ # rely on precise warning counts
+ tests/hypothesis/test_base.py::test_can_use_explicit_event_loop_fixture
+ tests/modes/test_legacy_mode.py
+ tests/modes/test_strict_mode.py::test_strict_mode_ignores_unmarked_fixture
+ tests/test_event_loop_fixture_finalizer.py::test_event_loop_fixture_finalizer_raises_warning_when_fixture_leaves_loop_unclosed
+ tests/test_event_loop_fixture_finalizer.py::test_event_loop_fixture_finalizer_raises_warning_when_test_leaves_loop_unclosed
+ tests/test_pytest_min_version_warning.py
+ tests/trio/test_fixtures.py::test_strict_mode_ignores_trio_fixtures
+ )
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ local -x PYTEST_PLUGINS=pytest_asyncio.plugin,_hypothesis_pytestplugin
+ epytest
+}
next reply other threads:[~2023-12-04 13:45 UTC|newest]
Thread overview: 112+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-04 13:45 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-07 12:45 [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-asyncio/ Michał Górny
2025-02-15 14:16 Michał Górny
2025-02-15 13:28 Sam James
2025-02-15 11:30 Michał Górny
2025-01-29 8:48 Michał Górny
2025-01-25 11:05 Michał Górny
2025-01-25 10:41 Sam James
2025-01-18 10:03 Michał Górny
2025-01-18 8:56 Arthur Zamarin
2025-01-08 8:28 Michał Górny
2025-01-03 5:47 Michał Górny
2024-12-28 10:47 Michał Górny
2024-12-28 9:21 Arthur Zamarin
2024-12-14 7:36 Michał Górny
2024-09-07 10:58 Michał Górny
2024-08-24 6:41 Michał Górny
2024-08-23 16:44 Michał Górny
2024-08-10 5:26 Michał Górny
2024-08-03 6:37 Michał Górny
2024-08-03 6:24 Michał Górny
2024-07-31 5:52 Michał Górny
2024-07-18 1:56 Michał Górny
2024-06-05 9:13 Michał Górny
2024-06-05 6:48 Arthur Zamarin
2024-05-20 4:48 Michał Górny
2024-04-06 12:37 Michał Górny
2024-04-06 9:35 Arthur Zamarin
2024-03-23 10:45 Michał Górny
2024-03-23 10:41 Michał Górny
2024-03-19 20:09 Michał Górny
2024-03-09 7:18 Michał Górny
2024-02-24 10:14 Michał Górny
2024-02-09 18:45 Arthur Zamarin
2024-01-29 5:06 Michał Górny
2024-01-17 7:41 Michał Górny
2024-01-11 4:56 Michał Górny
2024-01-01 14:41 Michał Górny
2023-12-20 15:47 Michał Górny
2023-12-04 13:45 Michał Górny
2023-12-04 6:48 Michał Górny
2023-12-03 15:38 Michał Górny
2023-11-10 14:38 Michał Górny
2023-10-31 19:12 Michał Górny
2023-08-19 18:14 Michał Górny
2023-08-19 16:44 Arthur Zamarin
2023-07-13 5:28 Michał Górny
2023-05-24 8:35 Michał Górny
2023-04-22 9:16 Michał Górny
2023-04-22 8:57 Arthur Zamarin
2023-03-19 19:03 Michał Górny
2022-12-17 7:03 Michał Górny
2022-12-16 20:04 Arthur Zamarin
2022-12-08 16:57 Michał Górny
2022-11-25 13:58 Michał Górny
2022-11-25 13:52 Arthur Zamarin
2022-11-12 7:33 Michał Górny
2022-10-21 14:34 Michał Górny
2022-08-17 19:40 Arthur Zamarin
2022-08-17 18:46 Arthur Zamarin
2022-07-16 8:02 Michał Górny
2022-05-10 20:38 Michał Górny
2022-04-09 18:39 Michał Górny
2022-04-09 16:39 Arthur Zamarin
2022-03-26 16:19 Arthur Zamarin
2022-03-09 20:06 Arthur Zamarin
2022-02-27 18:58 Michał Górny
2022-02-27 12:29 Jakov Smolić
2022-02-17 20:19 Michał Górny
2022-02-17 19:37 Arthur Zamarin
2022-02-07 21:15 James Le Cuirot
2022-01-18 9:51 Michał Górny
2022-01-17 12:33 Arthur Zamarin
2022-01-14 8:08 Michał Górny
2021-11-21 19:28 Jakov Smolić
2021-10-17 7:15 Michał Górny
2021-06-10 14:02 Yixun Lan
2021-05-26 20:00 Michał Górny
2021-05-26 8:36 Michał Górny
2021-05-26 6:49 Agostino Sarubbo
2021-04-22 7:36 Michał Górny
2021-04-19 6:56 Michał Górny
2020-12-27 12:51 Sergei Trofimovich
2020-12-27 12:32 Sergei Trofimovich
2020-12-27 12:28 Sergei Trofimovich
2020-12-27 11:38 Sergei Trofimovich
2020-12-07 2:37 Matt Turner
2020-11-28 16:39 Sergei Trofimovich
2020-11-28 14:21 Sam James
2020-11-28 11:26 Sergei Trofimovich
2020-11-11 23:06 Sergei Trofimovich
2020-11-11 8:49 Michał Górny
2020-07-31 6:21 Michał Górny
2020-07-31 1:37 Sam James
2020-07-31 1:37 Sam James
2020-07-20 11:45 Sam James
2020-07-20 2:32 Sam James
2020-07-11 7:04 Michał Górny
2020-07-11 7:04 Michał Górny
2020-07-09 8:59 Agostino Sarubbo
2020-06-24 8:00 Michał Górny
2020-06-01 19:07 Michał Górny
2020-05-30 16:20 Michał Górny
2020-05-29 21:01 Michał Górny
2020-05-12 15:54 Mart Raudsepp
2020-05-04 7:08 Michał Górny
2020-04-21 8:08 Michał Górny
2020-04-20 15:49 Michał Górny
2020-04-20 15:49 Michał Górny
2020-01-03 20:46 David Seifert
2020-01-01 3:22 Georgy Yakovlev
2019-07-30 14:39 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1701697495.0beede837191f4c62fa0ce6f58c63cdb1ee917fb.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox