gentoo/dev-python/pytest-mock/pytest-mock-3.15.0.ebuild
Michał Górny eadd9a2704
dev-python/pytest-mock: Bump to 3.15.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-09-05 06:10:09 +02:00

54 lines
1.2 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_TESTED=( python3_{11..14} pypy3_11 )
PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" python3_{13,14}t )
inherit distutils-r1 pypi
DESCRIPTION="Thin-wrapper around the mock package for easier use with pytest"
HOMEPAGE="
https://github.com/pytest-dev/pytest-mock/
https://pypi.org/project/pytest-mock/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-python/pytest-6.2.5[${PYTHON_USEDEP}]
"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
$(python_gen_cond_dep '
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
' "${PYTHON_TESTED[@]}")
)
"
python_test() {
if ! has "${EPYTHON/./_}" "${PYTHON_TESTED[@]}"; then
einfo "Skipping tests on ${EPYTHON}"
return
fi
local EPYTEST_PLUGINS=( "${PN}" pytest-asyncio )
local EPYTEST_PLUGIN_LOAD_VIA_ENV=1
local EPYTEST_DESELECT=()
if has_version dev-python/mock; then
EPYTEST_DESELECT+=(
tests/test_pytest_mock.py::test_standalone_mock
)
fi
epytest --assert=plain
}