commit:     eafec4aab91bf738cf197ad4fe5635c32195cf9a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  7 15:12:56 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul  7 15:36:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eafec4aa

dev-python/mss: Enable py3.13

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/mss/mss-9.0.1.ebuild | 31 ++++++++++++++++++-------------
 1 file changed, 18 insertions(+), 13 deletions(-)

diff --git a/dev-python/mss/mss-9.0.1.ebuild b/dev-python/mss/mss-9.0.1.ebuild
index 7a2737d549c2..619ed560bba8 100644
--- a/dev-python/mss/mss-9.0.1.ebuild
+++ b/dev-python/mss/mss-9.0.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1 pypi virtualx
 
@@ -28,17 +28,6 @@ BDEPEND="
 distutils_enable_tests pytest
 distutils_enable_sphinx docs/source dev-python/sphinx-rtd-theme
 
-EPYTEST_IGNORE=(
-       # upstream tests for self-build, apparently broken by setuptools
-       # issuing deprecation warnings
-       src/tests/test_setup.py
-)
-
-EPYTEST_DESELECT=(
-       # unreliable `lsof -U | grep ...` tests
-       src/tests/test_leaks.py
-)
-
 src_prepare() {
        sed -i -e '/--cov/d' setup.cfg || die
        distutils-r1_src_prepare
@@ -47,3 +36,19 @@ src_prepare() {
 src_test() {
        virtx distutils-r1_src_test
 }
+
+python_test() {
+       local EPYTEST_IGNORE=(
+               # upstream tests for self-build, apparently broken by setuptools
+               # issuing deprecation warnings
+               src/tests/test_setup.py
+       )
+
+       local EPYTEST_DESELECT=(
+               # unreliable `lsof -U | grep ...` tests
+               src/tests/test_leaks.py
+       )
+
+       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+       epytest -p rerunfailures
+}

Reply via email to