commit: 8034ddfe19a8668dcd1fe00f94f5f7d0679ab05a Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Wed Sep 22 07:18:09 2021 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Wed Sep 22 07:18:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8034ddfe
dev-python/pytest-mock: fix running with pytest-xprocess installed Closes: https://bugs.gentoo.org/813061 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> dev-python/pytest-mock/pytest-mock-3.6.1.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/dev-python/pytest-mock/pytest-mock-3.6.1.ebuild b/dev-python/pytest-mock/pytest-mock-3.6.1.ebuild index 8f048a9f899..3125f886d4a 100644 --- a/dev-python/pytest-mock/pytest-mock-3.6.1.ebuild +++ b/dev-python/pytest-mock/pytest-mock-3.6.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 DESCRIPTION="Thin-wrapper around the mock package for easier use with pytest" @@ -19,14 +19,18 @@ BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]" distutils_enable_tests pytest +src_prepare() { + sed -e 's/runpytest_subprocess(/&"-p","no:xprocess",/' -i tests/test_pytest_mock.py || die + distutils-r1_src_prepare +} + python_test() { - local deselect=() if has_version dev-python/mock; then - deselect+=( + local EPYTEST_DESELECT=( tests/test_pytest_mock.py::test_standalone_mock ) fi distutils_install_for_testing - epytest --assert=plain ${deselect[@]/#/--deselect } + epytest --assert=plain }
