Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-asyncio/
Date: Sun, 19 Mar 2023 19:03:50
Message-Id: 1679252621.036e8feffd13fa202ad34d1c862493c0cd35e000.mgorny@gentoo
1 commit: 036e8feffd13fa202ad34d1c862493c0cd35e000
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 19 17:44:42 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 19 19:03:41 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=036e8fef
7
8 dev-python/pytest-asyncio: Bump to 0.21.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-asyncio/Manifest | 1 +
13 .../pytest-asyncio/pytest-asyncio-0.21.0.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/dev-python/pytest-asyncio/Manifest b/dev-python/pytest-asyncio/Manifest
17 index 3126a82035ec..58f880ef05e9 100644
18 --- a/dev-python/pytest-asyncio/Manifest
19 +++ b/dev-python/pytest-asyncio/Manifest
20 @@ -1 +1,2 @@
21 DIST pytest-asyncio-0.20.3.gh.tar.gz 27695 BLAKE2B 6e6f0d58d0f985cee9dc0b27f886d0b1b4b54ecbf4980c4ac59b420d6e6e5c01d1c6f3c9ed803391910124f19ee3a882c963f10e5f6bab6de6115bfa222c8be2 SHA512 78a6e251db80696d6f62a54c8d6836e2a820f27efdaa848eb1be512a1592d3bd3fb7c7eee46bb2039a317a8d431565614c888f8436fbe0d4eb60534ce4780e90
22 +DIST pytest-asyncio-0.21.0.tar.gz 29898 BLAKE2B 6455e59a2e28ddbefd54e4c16970d36d22a674406fbc0e352e9886af3a7a51a0ae4a8ce32e01d076e2411f0501548092dfbe3150d87c14cb5e5eb71966bcb743 SHA512 ce557e5f15f3ae745804f4484d590a9f673d76f0c67c2e8ab444e1b17a4ae5ea6021bf55d7ef905643bfbcded6299f207a386fb4dc05ddf20ade25e6618a9773
23
24 diff --git a/dev-python/pytest-asyncio/pytest-asyncio-0.21.0.ebuild b/dev-python/pytest-asyncio/pytest-asyncio-0.21.0.ebuild
25 new file mode 100644
26 index 000000000000..6eb231250e27
27 --- /dev/null
28 +++ b/dev-python/pytest-asyncio/pytest-asyncio-0.21.0.ebuild
29 @@ -0,0 +1,48 @@
30 +# Copyright 2019-2023 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYPI_NO_NORMALIZE=1
37 +PYTHON_COMPAT=( python3_{9..11} pypy3 )
38 +
39 +inherit distutils-r1 pypi
40 +
41 +DESCRIPTION="Library for testing asyncio code with pytest"
42 +HOMEPAGE="
43 + https://github.com/pytest-dev/pytest-asyncio/
44 + https://pypi.org/project/pytest-asyncio/
45 +"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
50 +
51 +RDEPEND="
52 + >=dev-python/pytest-5.4.0[${PYTHON_USEDEP}]
53 +"
54 +BDEPEND="
55 + dev-python/setuptools-scm[${PYTHON_USEDEP}]
56 + test? (
57 + dev-python/flaky[${PYTHON_USEDEP}]
58 + >=dev-python/hypothesis-3.64[${PYTHON_USEDEP}]
59 + )
60 +"
61 +
62 +distutils_enable_tests pytest
63 +
64 +python_test() {
65 + local EPYTEST_DESELECT=(
66 + # rely on precise warning counts
67 + tests/test_pytest_min_version_warning.py
68 + tests/modes/test_legacy_mode.py
69 + tests/trio/test_fixtures.py::test_strict_mode_ignores_trio_fixtures
70 + tests/test_event_loop_fixture_finalizer.py::test_event_loop_fixture_finalizer_raises_warning_when_fixture_leaves_loop_unclosed
71 + tests/test_event_loop_fixture_finalizer.py::test_event_loop_fixture_finalizer_raises_warning_when_test_leaves_loop_unclosed
72 + )
73 +
74 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
75 + local -x PYTEST_PLUGINS=pytest_asyncio.plugin,_hypothesis_pytestplugin,flaky.flaky_pytest_plugin
76 + epytest
77 +}