commit: 5282318dc0aca5554453fac2d8c316ba2fbd8224
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 14 07:15:03 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 14 07:15:42 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5282318d
dev-python/pytest: Enable testing on py3.14
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pytest/pytest-8.3.5.ebuild | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/dev-python/pytest/pytest-8.3.5.ebuild
b/dev-python/pytest/pytest-8.3.5.ebuild
index b3d5b5f0a07b..94c3cf565d69 100644
--- a/dev-python/pytest/pytest-8.3.5.ebuild
+++ b/dev-python/pytest/pytest-8.3.5.ebuild
@@ -4,8 +4,8 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_TESTED=( python3_{11..13} pypy3_11 )
-PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" python3_13t python3_14{,t} )
+PYTHON_TESTED=( python3_{11..14} pypy3_11 )
+PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" python3_{13,14}t )
inherit distutils-r1 pypi
@@ -111,6 +111,15 @@ python_test() {
testing/test_skipping.py::test_errors_in_xfail_skip_expressions
)
;;
+ python3.14*)
+ EPYTEST_DESELECT+=(
+ # still broken on main, as of 2025-05-14
+
testing/test_unraisableexception.py::test_unraisable
+
testing/test_unraisableexception.py::test_unraisable_in_setup
+
testing/test_unraisableexception.py::test_unraisable_in_teardown
+
testing/test_debugging.py::test_raises_bdbquit_with_eoferror
+ )
+ ;;
esac
local EPYTEST_XDIST=1