Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-mock/
Date: Wed, 22 Sep 2021 07:18:33
Message-Id: 1632295092.8034ddfe19a8668dcd1fe00f94f5f7d0679ab05a.arthurzam@gentoo
1 commit: 8034ddfe19a8668dcd1fe00f94f5f7d0679ab05a
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 22 07:18:09 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 22 07:18:12 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8034ddfe
7
8 dev-python/pytest-mock: fix running with pytest-xprocess installed
9
10 Closes: https://bugs.gentoo.org/813061
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 dev-python/pytest-mock/pytest-mock-3.6.1.ebuild | 12 ++++++++----
14 1 file changed, 8 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/pytest-mock/pytest-mock-3.6.1.ebuild b/dev-python/pytest-mock/pytest-mock-3.6.1.ebuild
17 index 8f048a9f899..3125f886d4a 100644
18 --- a/dev-python/pytest-mock/pytest-mock-3.6.1.ebuild
19 +++ b/dev-python/pytest-mock/pytest-mock-3.6.1.ebuild
20 @@ -3,7 +3,7 @@
21
22 EAPI=7
23
24 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
25 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
26 inherit distutils-r1
27
28 DESCRIPTION="Thin-wrapper around the mock package for easier use with pytest"
29 @@ -19,14 +19,18 @@ BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
30
31 distutils_enable_tests pytest
32
33 +src_prepare() {
34 + sed -e 's/runpytest_subprocess(/&"-p","no:xprocess",/' -i tests/test_pytest_mock.py || die
35 + distutils-r1_src_prepare
36 +}
37 +
38 python_test() {
39 - local deselect=()
40 if has_version dev-python/mock; then
41 - deselect+=(
42 + local EPYTEST_DESELECT=(
43 tests/test_pytest_mock.py::test_standalone_mock
44 )
45 fi
46
47 distutils_install_for_testing
48 - epytest --assert=plain ${deselect[@]/#/--deselect }
49 + epytest --assert=plain
50 }