summaryrefslogtreecommitdiff
path: root/dev-python/pytest
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-05-14 09:15:03 +0200
committerMichał Górny <mgorny@gentoo.org>2025-05-14 09:15:42 +0200
commit5282318dc0aca5554453fac2d8c316ba2fbd8224 (patch)
treea22d8c2128abc3a6f699352d97b4aa10d6562c8f /dev-python/pytest
parent4eab239945ebb28a71e36eb136eae3ec3147d308 (diff)
downloadgentoo-5282318dc0aca5554453fac2d8c316ba2fbd8224.tar.gz
gentoo-5282318dc0aca5554453fac2d8c316ba2fbd8224.tar.bz2
gentoo-5282318dc0aca5554453fac2d8c316ba2fbd8224.zip
dev-python/pytest: Enable testing on py3.14
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pytest')
-rw-r--r--dev-python/pytest/pytest-8.3.5.ebuild13
1 files 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