summaryrefslogtreecommitdiff
path: root/dev-python/sortedcontainers/sortedcontainers-2.4.0-r1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/sortedcontainers/sortedcontainers-2.4.0-r1.ebuild')
-rw-r--r--dev-python/sortedcontainers/sortedcontainers-2.4.0-r1.ebuild14
1 files changed, 13 insertions, 1 deletions
diff --git a/dev-python/sortedcontainers/sortedcontainers-2.4.0-r1.ebuild b/dev-python/sortedcontainers/sortedcontainers-2.4.0-r1.ebuild
index c2dc8839ab69..f18de8fb3226 100644
--- a/dev-python/sortedcontainers/sortedcontainers-2.4.0-r1.ebuild
+++ b/dev-python/sortedcontainers/sortedcontainers-2.4.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2025 Gentoo Authors
+# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -25,8 +25,20 @@ LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
+EPYTEST_PLUGINS=()
distutils_enable_tests pytest
python_test() {
+ local EPYTEST_DESELECT=()
+
+ case ${EPYTHON} in
+ python3.15*)
+ EPYTEST_DESELECT+=(
+ # changes in pprint(). yes, seriously.
+ tests/sortedcollection.py::tests.sortedcollection.SortedCollection
+ )
+ ;;
+ esac
+
epytest --ignore docs/conf.py
}