From 12ab06dc238aeaa51e4e10e50a8cc1badec8e15e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Wed, 5 May 2021 15:37:30 +0200 Subject: [PATCH] dev-python/pytest: Enable python3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/pytest/pytest-6.2.4.ebuild | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/dev-python/pytest/pytest-6.2.4.ebuild b/dev-python/pytest/pytest-6.2.4.ebuild index 12ec533b3782c..267da87475fd6 100644 --- a/dev-python/pytest/pytest-6.2.4.ebuild +++ b/dev-python/pytest/pytest-6.2.4.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} pypy3 ) +PYTHON_COMPAT=( python3_{7..10} pypy3 ) inherit distutils-r1 DESCRIPTION="Simple powerful testing with Python" @@ -29,16 +29,18 @@ RDEPEND=" >=dev-python/py-1.8.2[${PYTHON_USEDEP}] dev-python/toml[${PYTHON_USEDEP}] " -DEPEND=" +BDEPEND=" >=dev-python/setuptools_scm-3.4[${PYTHON_USEDEP}] test? ( ${RDEPEND} - dev-python/argcomplete[${PYTHON_USEDEP}] - >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/nose[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/xmlschema[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/argcomplete[${PYTHON_USEDEP}] + >=dev-python/hypothesis-3.56[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/xmlschema[${PYTHON_USEDEP}] + ' python3_{7..9} pypy3) )" src_test() { @@ -49,6 +51,8 @@ src_test() { } python_test() { + [[ ${EPYTHON} == python3.10 ]] && return + distutils_install_for_testing --via-root "${EPYTHON}" -m pytest -vv --lsof -rfsxX -p no:pkgcore -p no:flaky ||