dev-python/jedi: Enable pypy3

Sponsored-by: Ex Makhina, Inc. <info-gentoo@exmakhina.com>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2023-11-16 17:38:54 +01:00
parent f5acdd905c
commit 9bc176c292

View File

@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( pypy3 python3_{10..12} )
inherit distutils-r1
@@ -65,6 +65,17 @@ python_test() {
test/test_inference/test_imports.py::test_os_issues
)
case ${EPYTHON} in
pypy3)
EPYTEST_DESELECT+=(
test/test_api/test_api.py::test_preload_modules
test/test_api/test_interpreter.py::test_param_infer_default
test/test_inference/test_compiled.py::test_next_docstr
test/test_inference/test_compiled.py::test_time_docstring
)
;;
esac
# some plugin breaks case-insensitivity on completions
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
# django and pytest tests are very version dependent