dev-python/executing: Deselect test crashing on py3.10

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2023-10-30 19:36:49 +01:00
parent 21763a2eb3
commit 3a7bf5f8d6

View File

@@ -37,6 +37,16 @@ distutils_enable_tests pytest
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
python_test() {
local EPYTEST_DESELECT=()
case ${EPYTHON} in
python3.10)
EPYTEST_DESELECT+=(
# crashes with infinite recursion (?)
"tests/test_main.py::test_small_samples[1656dc52edd2385921104de7bb255ca369713f4b8c034ebeba5cf946058109bc.py]"
)
;;
esac
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest
}